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/jakal:100/col?format=api
HTTP 200 OK
Allow: GET, POST, PUT, DELETE, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "cols": [
        {
            "data": [
                0.0,
                0.005,
                0.01,
                0.015,
                0.02,
                0.025,
                0.03,
                0.035,
                0.04,
                0.045,
                0.05,
                0.055,
                0.06,
                0.065,
                0.07,
                0.075,
                0.08,
                0.085,
                0.09,
                0.095,
                0.1,
                0.105,
                0.11,
                0.115,
                0.12,
                0.125,
                0.13,
                0.135,
                0.14,
                0.145,
                0.15,
                0.155,
                0.16,
                0.165,
                0.17,
                0.17500000000000002,
                0.18,
                0.185,
                0.19,
                0.195,
                0.2,
                0.20500000000000002,
                0.21,
                0.215,
                0.22,
                0.225,
                0.23,
                0.23500000000000001,
                0.24,
                0.245,
                0.25,
                0.255,
                0.26,
                0.265,
                0.27,
                0.275,
                0.28,
                0.28500000000000003,
                0.29,
                0.295,
                0.3,
                0.305,
                0.31,
                0.315,
                0.32,
                0.325,
                0.33,
                0.335,
                0.34,
                0.34500000000000003,
                0.35000000000000003,
                0.355,
                0.36,
                0.365,
                0.37,
                0.375,
                0.38,
                0.385,
                0.39,
                0.395,
                0.4,
                0.405,
                0.41000000000000003,
                0.41500000000000004,
                0.42,
                0.425,
                0.43,
                0.435,
                0.44,
                0.445,
                0.45,
                0.455,
                0.46,
                0.465,
                0.47000000000000003,
                0.47500000000000003,
                0.48,
                0.485,
                0.49,
                0.495,
                0.5,
                0.505,
                0.51,
                0.515,
                0.52,
                0.525,
                0.53,
                0.535,
                0.54,
                0.545,
                0.55,
                0.555,
                0.56,
                0.5650000000000001,
                0.5700000000000001,
                0.5750000000000001,
                0.58,
                0.585,
                0.59,
                0.595,
                0.6,
                0.605,
                0.61,
                0.615,
                0.62,
                0.625,
                0.63,
                0.635,
                0.64,
                0.645,
                0.65,
                0.655,
                0.66,
                0.665,
                0.67,
                0.675,
                0.68,
                0.685,
                0.6900000000000001,
                0.6950000000000001,
                0.7000000000000001,
                0.705,
                0.71,
                0.715,
                0.72,
                0.725,
                0.73,
                0.735,
                0.74,
                0.745,
                0.75,
                0.755,
                0.76,
                0.765,
                0.77,
                0.775,
                0.78,
                0.785,
                0.79,
                0.795,
                0.8,
                0.805,
                0.81,
                0.8150000000000001,
                0.8200000000000001,
                0.8250000000000001,
                0.8300000000000001,
                0.835,
                0.84,
                0.845,
                0.85,
                0.855,
                0.86,
                0.865,
                0.87,
                0.875,
                0.88,
                0.885,
                0.89,
                0.895,
                0.9,
                0.905,
                0.91,
                0.915,
                0.92,
                0.925,
                0.93,
                0.935,
                0.9400000000000001,
                0.9450000000000001,
                0.9500000000000001,
                0.9550000000000001,
                0.96,
                0.965,
                0.97,
                0.975,
                0.98,
                0.985,
                0.99,
                0.995,
                1.0,
                1.0050000000000001,
                1.01,
                1.0150000000000001,
                1.02,
                1.025,
                1.03,
                1.035,
                1.04,
                1.045,
                1.05,
                1.055,
                1.06,
                1.065,
                1.07,
                1.075,
                1.08,
                1.085,
                1.09,
                1.095,
                1.1,
                1.105,
                1.11,
                1.115,
                1.12,
                1.125,
                1.1300000000000001,
                1.135,
                1.1400000000000001,
                1.145,
                1.1500000000000001,
                1.155,
                1.16,
                1.165,
                1.17,
                1.175,
                1.18,
                1.185,
                1.19,
                1.195,
                1.2,
                1.205,
                1.21,
                1.215,
                1.22,
                1.225,
                1.23,
                1.235,
                1.24,
                1.245,
                1.25,
                1.2550000000000001,
                1.26,
                1.2650000000000001,
                1.27,
                1.2750000000000001,
                1.28,
                1.285,
                1.29,
                1.295,
                1.3,
                1.305,
                1.31,
                1.315,
                1.32,
                1.325,
                1.33,
                1.335,
                1.34,
                1.345,
                1.35,
                1.355,
                1.36,
                1.365,
                1.37,
                1.375,
                1.3800000000000001,
                1.385,
                1.3900000000000001,
                1.395,
                1.4000000000000001,
                1.405,
                1.41,
                1.415,
                1.42,
                1.425,
                1.43,
                1.435,
                1.44,
                1.445,
                1.45,
                1.455,
                1.46,
                1.465,
                1.47,
                1.475,
                1.48,
                1.485,
                1.49,
                1.495,
                1.5,
                1.5050000000000001,
                1.51,
                1.5150000000000001,
                1.52,
                1.5250000000000001,
                1.53,
                1.5350000000000001,
                1.54,
                1.545,
                1.55,
                1.555,
                1.56,
                1.565,
                1.57,
                1.575,
                1.58,
                1.585,
                1.59,
                1.595,
                1.6,
                1.605,
                1.61,
                1.615,
                1.62,
                1.625,
                1.6300000000000001,
                1.635,
                1.6400000000000001,
                1.645,
                1.6500000000000001,
                1.655,
                1.6600000000000001,
                1.665,
                1.67,
                1.675,
                1.68,
                1.685,
                1.69,
                1.695,
                1.7,
                1.705,
                1.71,
                1.715,
                1.72,
                1.725,
                1.73,
                1.735,
                1.74,
                1.745,
                1.75,
                1.7550000000000001,
                1.76,
                1.7650000000000001,
                1.77,
                1.7750000000000001,
                1.78,
                1.7850000000000001,
                1.79,
                1.795,
                1.8,
                1.805,
                1.81,
                1.815,
                1.82,
                1.825,
                1.83,
                1.835,
                1.84,
                1.845,
                1.85,
                1.855,
                1.86,
                1.865,
                1.87,
                1.875,
                1.8800000000000001,
                1.885,
                1.8900000000000001,
                1.895,
                1.9000000000000001,
                1.905,
                1.9100000000000001,
                1.915,
                1.92,
                1.925,
                1.93,
                1.935,
                1.94,
                1.945,
                1.95,
                1.955,
                1.96,
                1.965,
                1.97,
                1.975,
                1.98,
                1.985,
                1.99,
                1.995,
                2.0,
                2.005,
                2.0100000000000002,
                2.015,
                2.02,
                2.025,
                2.0300000000000002,
                2.035,
                2.04,
                2.045,
                2.05,
                2.055,
                2.06,
                2.065,
                2.07,
                2.075,
                2.08,
                2.085,
                2.09,
                2.095,
                2.1,
                2.105,
                2.11,
                2.115,
                2.12,
                2.125,
                2.13,
                2.1350000000000002,
                2.14,
                2.145,
                2.15,
                2.1550000000000002,
                2.16,
                2.165,
                2.17,
                2.1750000000000003,
                2.18,
                2.185,
                2.19,
                2.195,
                2.2,
                2.205,
                2.21,
                2.215,
                2.22,
                2.225,
                2.23,
                2.235,
                2.24,
                2.245,
                2.25,
                2.255,
                2.2600000000000002,
                2.265,
                2.27,
                2.275,
                2.2800000000000002,
                2.285,
                2.29,
                2.295,
                2.3000000000000003,
                2.305,
                2.31,
                2.315,
                2.32,
                2.325,
                2.33,
                2.335,
                2.34,
                2.345,
                2.35,
                2.355,
                2.36,
                2.365,
                2.37,
                2.375,
                2.38,
                2.3850000000000002,
                2.39,
                2.395,
                2.4,
                2.4050000000000002,
                2.41,
                2.415,
                2.42,
                2.4250000000000003,
                2.43,
                2.435,
                2.44,
                2.445,
                2.45,
                2.455,
                2.46,
                2.465,
                2.47,
                2.475,
                2.48,
                2.485,
                2.49,
                2.495,
                2.5,
                2.505,
                2.5100000000000002,
                2.515,
                2.52,
                2.525,
                2.5300000000000002,
                2.535,
                2.54,
                2.545,
                2.5500000000000003,
                2.555,
                2.56,
                2.565,
                2.57,
                2.575,
                2.58,
                2.585,
                2.59,
                2.595,
                2.6,
                2.605,
                2.61,
                2.615,
                2.62,
                2.625,
                2.63,
                2.6350000000000002,
                2.64,
                2.645,
                2.65,
                2.6550000000000002,
                2.66,
                2.665,
                2.67,
                2.6750000000000003,
                2.68,
                2.685,
                2.69,
                2.695,
                2.7,
                2.705,
                2.71,
                2.715,
                2.72,
                2.725,
                2.73,
                2.735,
                2.74,
                2.745,
                2.75,
                2.755,
                2.7600000000000002,
                2.765,
                2.77,
                2.775,
                2.7800000000000002,
                2.785,
                2.79,
                2.795,
                2.8000000000000003,
                2.805,
                2.81,
                2.815,
                2.82,
                2.825,
                2.83,
                2.835,
                2.84,
                2.845,
                2.85,
                2.855,
                2.86,
                2.865,
                2.87,
                2.875,
                2.88,
                2.8850000000000002,
                2.89,
                2.895,
                2.9,
                2.9050000000000002,
                2.91,
                2.915,
                2.92,
                2.9250000000000003,
                2.93,
                2.935,
                2.94,
                2.945,
                2.95,
                2.955,
                2.96,
                2.965,
                2.97,
                2.975,
                2.98,
                2.985,
                2.99,
                2.995,
                3.0,
                3.005,
                3.0100000000000002,
                3.015,
                3.02,
                3.025,
                3.0300000000000002,
                3.035,
                3.04,
                3.045,
                3.0500000000000003,
                3.055,
                3.06,
                3.065,
                3.0700000000000003,
                3.075,
                3.08,
                3.085,
                3.09,
                3.095,
                3.1,
                3.105,
                3.11,
                3.115,
                3.12,
                3.125,
                3.13,
                3.1350000000000002,
                3.14,
                3.145,
                3.15,
                3.1550000000000002,
                3.16,
                3.165,
                3.17,
                3.1750000000000003,
                3.18,
                3.185,
                3.19,
                3.1950000000000003,
                3.2,
                3.205,
                3.21,
                3.215,
                3.22,
                3.225,
                3.23,
                3.235,
                3.24,
                3.245,
                3.25,
                3.255,
                3.2600000000000002,
                3.265,
                3.27,
                3.275,
                3.2800000000000002,
                3.285,
                3.29,
                3.295,
                3.3000000000000003,
                3.305,
                3.31,
                3.315,
                3.3200000000000003,
                3.325,
                3.33,
                3.335,
                3.34,
                3.345,
                3.35,
                3.355,
                3.36,
                3.365,
                3.37,
                3.375,
                3.38,
                3.3850000000000002,
                3.39,
                3.395,
                3.4,
                3.4050000000000002,
                3.41,
                3.415,
                3.42,
                3.4250000000000003,
                3.43,
                3.435,
                3.44,
                3.4450000000000003,
                3.45,
                3.455,
                3.46,
                3.465,
                3.47,
                3.475,
                3.48,
                3.485,
                3.49,
                3.495,
                3.5,
                3.505,
                3.5100000000000002,
                3.515,
                3.52,
                3.525,
                3.5300000000000002,
                3.535,
                3.54,
                3.545,
                3.5500000000000003,
                3.555,
                3.56,
                3.565,
                3.5700000000000003,
                3.575,
                3.58,
                3.585,
                3.59,
                3.595,
                3.6,
                3.605,
                3.61,
                3.615,
                3.62,
                3.625,
                3.63,
                3.6350000000000002,
                3.64,
                3.645,
                3.65,
                3.6550000000000002,
                3.66,
                3.665,
                3.67,
                3.6750000000000003,
                3.68,
                3.685,
                3.69,
                3.6950000000000003,
                3.7,
                3.705,
                3.71,
                3.715,
                3.72,
                3.725,
                3.73,
                3.735,
                3.74,
                3.745,
                3.75,
                3.755,
                3.7600000000000002,
                3.765,
                3.77,
                3.775,
                3.7800000000000002,
                3.785,
                3.79,
                3.795,
                3.8000000000000003,
                3.805,
                3.81,
                3.815,
                3.8200000000000003,
                3.825,
                3.83,
                3.835,
                3.84,
                3.845,
                3.85,
                3.855,
                3.86,
                3.865,
                3.87,
                3.875,
                3.88,
                3.8850000000000002,
                3.89,
                3.895,
                3.9,
                3.9050000000000002,
                3.91,
                3.915,
                3.92,
                3.9250000000000003,
                3.93,
                3.935,
                3.94,
                3.9450000000000003,
                3.95,
                3.955,
                3.96,
                3.9650000000000003,
                3.97,
                3.975,
                3.98,
                3.985,
                3.99,
                3.995,
                4.0,
                4.005,
                4.01,
                4.015,
                4.0200000000000005,
                4.025,
                4.03,
                4.035,
                4.04,
                4.045,
                4.05,
                4.055,
                4.0600000000000005,
                4.065,
                4.07,
                4.075,
                4.08,
                4.085,
                4.09,
                4.095,
                4.1,
                4.105,
                4.11,
                4.115,
                4.12,
                4.125,
                4.13,
                4.135,
                4.14,
                4.1450000000000005,
                4.15,
                4.155,
                4.16,
                4.165,
                4.17,
                4.175,
                4.18,
                4.1850000000000005,
                4.19,
                4.195,
                4.2,
                4.205,
                4.21,
                4.215,
                4.22,
                4.225,
                4.23,
                4.235,
                4.24,
                4.245,
                4.25,
                4.255,
                4.26,
                4.265,
                4.2700000000000005,
                4.275,
                4.28,
                4.285,
                4.29,
                4.295,
                4.3,
                4.305,
                4.3100000000000005,
                4.315,
                4.32,
                4.325,
                4.33,
                4.335,
                4.34,
                4.345,
                4.3500000000000005,
                4.355,
                4.36,
                4.365,
                4.37,
                4.375,
                4.38,
                4.385,
                4.39,
                4.3950000000000005,
                4.4,
                4.405,
                4.41,
                4.415,
                4.42,
                4.425,
                4.43,
                4.4350000000000005,
                4.44,
                4.445,
                4.45,
                4.455,
                4.46,
                4.465,
                4.47,
                4.4750000000000005,
                4.48,
                4.485,
                4.49,
                4.495,
                4.5,
                4.505,
                4.51,
                4.515,
                4.5200000000000005,
                4.525,
                4.53,
                4.535,
                4.54,
                4.545,
                4.55,
                4.555,
                4.5600000000000005,
                4.565,
                4.57,
                4.575,
                4.58,
                4.585,
                4.59,
                4.595,
                4.6000000000000005,
                4.605,
                4.61,
                4.615,
                4.62,
                4.625,
                4.63,
                4.635,
                4.64,
                4.6450000000000005,
                4.65,
                4.655,
                4.66,
                4.665,
                4.67,
                4.675,
                4.68,
                4.6850000000000005,
                4.69,
                4.695,
                4.7,
                4.705,
                4.71,
                4.715,
                4.72,
                4.7250000000000005,
                4.73,
                4.735,
                4.74,
                4.745,
                4.75,
                4.755,
                4.76,
                4.765,
                4.7700000000000005,
                4.775,
                4.78,
                4.785,
                4.79,
                4.795,
                4.8,
                4.805,
                4.8100000000000005,
                4.815,
                4.82,
                4.825,
                4.83,
                4.835,
                4.84,
                4.845,
                4.8500000000000005,
                4.855,
                4.86,
                4.865,
                4.87,
                4.875,
                4.88,
                4.885,
                4.89,
                4.8950000000000005,
                4.9,
                4.905,
                4.91,
                4.915,
                4.92,
                4.925,
                4.93,
                4.9350000000000005,
                4.94,
                4.945,
                4.95,
                4.955,
                4.96,
                4.965,
                4.97,
                4.9750000000000005,
                4.98,
                4.985,
                4.99,
                4.995,
                5.0
            ],
            "order": 0,
            "uid": "887bec",
            "name": "data.0.x"
        },
        {
            "data": [
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0,
                2.0
            ],
            "order": 1,
            "uid": "7f15ca",
            "name": "data.0.y"
        },
        {
            "data": [
                0.0,
                0.005,
                0.01,
                0.015,
                0.02,
                0.025,
                0.03,
                0.035,
                0.04,
                0.045,
                0.05,
                0.055,
                0.06,
                0.065,
                0.07,
                0.075,
                0.08,
                0.085,
                0.09,
                0.095,
                0.1,
                0.105,
                0.11,
                0.115,
                0.12,
                0.125,
                0.13,
                0.135,
                0.14,
                0.145,
                0.15,
                0.155,
                0.16,
                0.165,
                0.17,
                0.17500000000000002,
                0.18,
                0.185,
                0.19,
                0.195,
                0.2,
                0.20500000000000002,
                0.21,
                0.215,
                0.22,
                0.225,
                0.23,
                0.23500000000000001,
                0.24,
                0.245,
                0.25,
                0.255,
                0.26,
                0.265,
                0.27,
                0.275,
                0.28,
                0.28500000000000003,
                0.29,
                0.295,
                0.3,
                0.305,
                0.31,
                0.315,
                0.32,
                0.325,
                0.33,
                0.335,
                0.34,
                0.34500000000000003,
                0.35000000000000003,
                0.355,
                0.36,
                0.365,
                0.37,
                0.375,
                0.38,
                0.385,
                0.39,
                0.395,
                0.4,
                0.405,
                0.41000000000000003,
                0.41500000000000004,
                0.42,
                0.425,
                0.43,
                0.435,
                0.44,
                0.445,
                0.45,
                0.455,
                0.46,
                0.465,
                0.47000000000000003,
                0.47500000000000003,
                0.48,
                0.485,
                0.49,
                0.495,
                0.5,
                0.505,
                0.51,
                0.515,
                0.52,
                0.525,
                0.53,
                0.535,
                0.54,
                0.545,
                0.55,
                0.555,
                0.56,
                0.5650000000000001,
                0.5700000000000001,
                0.5750000000000001,
                0.58,
                0.585,
                0.59,
                0.595,
                0.6,
                0.605,
                0.61,
                0.615,
                0.62,
                0.625,
                0.63,
                0.635,
                0.64,
                0.645,
                0.65,
                0.655,
                0.66,
                0.665,
                0.67,
                0.675,
                0.68,
                0.685,
                0.6900000000000001,
                0.6950000000000001,
                0.7000000000000001,
                0.705,
                0.71,
                0.715,
                0.72,
                0.725,
                0.73,
                0.735,
                0.74,
                0.745,
                0.75,
                0.755,
                0.76,
                0.765,
                0.77,
                0.775,
                0.78,
                0.785,
                0.79,
                0.795,
                0.8,
                0.805,
                0.81,
                0.8150000000000001,
                0.8200000000000001,
                0.8250000000000001,
                0.8300000000000001,
                0.835,
                0.84,
                0.845,
                0.85,
                0.855,
                0.86,
                0.865,
                0.87,
                0.875,
                0.88,
                0.885,
                0.89,
                0.895,
                0.9,
                0.905,
                0.91,
                0.915,
                0.92,
                0.925,
                0.93,
                0.935,
                0.9400000000000001,
                0.9450000000000001,
                0.9500000000000001,
                0.9550000000000001,
                0.96,
                0.965,
                0.97,
                0.975,
                0.98,
                0.985,
                0.99,
                0.995,
                1.0,
                1.0050000000000001,
                1.01,
                1.0150000000000001,
                1.02,
                1.025,
                1.03,
                1.035,
                1.04,
                1.045,
                1.05,
                1.055,
                1.06,
                1.065,
                1.07,
                1.075,
                1.08,
                1.085,
                1.09,
                1.095,
                1.1,
                1.105,
                1.11,
                1.115,
                1.12,
                1.125,
                1.1300000000000001,
                1.135,
                1.1400000000000001,
                1.145,
                1.1500000000000001,
                1.155,
                1.16,
                1.165,
                1.17,
                1.175,
                1.18,
                1.185,
                1.19,
                1.195,
                1.2,
                1.205,
                1.21,
                1.215,
                1.22,
                1.225,
                1.23,
                1.235,
                1.24,
                1.245,
                1.25,
                1.2550000000000001,
                1.26,
                1.2650000000000001,
                1.27,
                1.2750000000000001,
                1.28,
                1.285,
                1.29,
                1.295,
                1.3,
                1.305,
                1.31,
                1.315,
                1.32,
                1.325,
                1.33,
                1.335,
                1.34,
                1.345,
                1.35,
                1.355,
                1.36,
                1.365,
                1.37,
                1.375,
                1.3800000000000001,
                1.385,
                1.3900000000000001,
                1.395,
                1.4000000000000001,
                1.405,
                1.41,
                1.415,
                1.42,
                1.425,
                1.43,
                1.435,
                1.44,
                1.445,
                1.45,
                1.455,
                1.46,
                1.465,
                1.47,
                1.475,
                1.48,
                1.485,
                1.49,
                1.495,
                1.5,
                1.5050000000000001,
                1.51,
                1.5150000000000001,
                1.52,
                1.5250000000000001,
                1.53,
                1.5350000000000001,
                1.54,
                1.545,
                1.55,
                1.555,
                1.56,
                1.565,
                1.57,
                1.575,
                1.58,
                1.585,
                1.59,
                1.595,
                1.6,
                1.605,
                1.61,
                1.615,
                1.62,
                1.625,
                1.6300000000000001,
                1.635,
                1.6400000000000001,
                1.645,
                1.6500000000000001,
                1.655,
                1.6600000000000001,
                1.665,
                1.67,
                1.675,
                1.68,
                1.685,
                1.69,
                1.695,
                1.7,
                1.705,
                1.71,
                1.715,
                1.72,
                1.725,
                1.73,
                1.735,
                1.74,
                1.745,
                1.75,
                1.7550000000000001,
                1.76,
                1.7650000000000001,
                1.77,
                1.7750000000000001,
                1.78,
                1.7850000000000001,
                1.79,
                1.795,
                1.8,
                1.805,
                1.81,
                1.815,
                1.82,
                1.825,
                1.83,
                1.835,
                1.84,
                1.845,
                1.85,
                1.855,
                1.86,
                1.865,
                1.87,
                1.875,
                1.8800000000000001,
                1.885,
                1.8900000000000001,
                1.895,
                1.9000000000000001,
                1.905,
                1.9100000000000001,
                1.915,
                1.92,
                1.925,
                1.93,
                1.935,
                1.94,
                1.945,
                1.95,
                1.955,
                1.96,
                1.965,
                1.97,
                1.975,
                1.98,
                1.985,
                1.99,
                1.995,
                2.0,
                2.005,
                2.0100000000000002,
                2.015,
                2.02,
                2.025,
                2.0300000000000002,
                2.035,
                2.04,
                2.045,
                2.05,
                2.055,
                2.06,
                2.065,
                2.07,
                2.075,
                2.08,
                2.085,
                2.09,
                2.095,
                2.1,
                2.105,
                2.11,
                2.115,
                2.12,
                2.125,
                2.13,
                2.1350000000000002,
                2.14,
                2.145,
                2.15,
                2.1550000000000002,
                2.16,
                2.165,
                2.17,
                2.1750000000000003,
                2.18,
                2.185,
                2.19,
                2.195,
                2.2,
                2.205,
                2.21,
                2.215,
                2.22,
                2.225,
                2.23,
                2.235,
                2.24,
                2.245,
                2.25,
                2.255,
                2.2600000000000002,
                2.265,
                2.27,
                2.275,
                2.2800000000000002,
                2.285,
                2.29,
                2.295,
                2.3000000000000003,
                2.305,
                2.31,
                2.315,
                2.32,
                2.325,
                2.33,
                2.335,
                2.34,
                2.345,
                2.35,
                2.355,
                2.36,
                2.365,
                2.37,
                2.375,
                2.38,
                2.3850000000000002,
                2.39,
                2.395,
                2.4,
                2.4050000000000002,
                2.41,
                2.415,
                2.42,
                2.4250000000000003,
                2.43,
                2.435,
                2.44,
                2.445,
                2.45,
                2.455,
                2.46,
                2.465,
                2.47,
                2.475,
                2.48,
                2.485,
                2.49,
                2.495,
                2.5,
                2.505,
                2.5100000000000002,
                2.515,
                2.52,
                2.525,
                2.5300000000000002,
                2.535,
                2.54,
                2.545,
                2.5500000000000003,
                2.555,
                2.56,
                2.565,
                2.57,
                2.575,
                2.58,
                2.585,
                2.59,
                2.595,
                2.6,
                2.605,
                2.61,
                2.615,
                2.62,
                2.625,
                2.63,
                2.6350000000000002,
                2.64,
                2.645,
                2.65,
                2.6550000000000002,
                2.66,
                2.665,
                2.67,
                2.6750000000000003,
                2.68,
                2.685,
                2.69,
                2.695,
                2.7,
                2.705,
                2.71,
                2.715,
                2.72,
                2.725,
                2.73,
                2.735,
                2.74,
                2.745,
                2.75,
                2.755,
                2.7600000000000002,
                2.765,
                2.77,
                2.775,
                2.7800000000000002,
                2.785,
                2.79,
                2.795,
                2.8000000000000003,
                2.805,
                2.81,
                2.815,
                2.82,
                2.825,
                2.83,
                2.835,
                2.84,
                2.845,
                2.85,
                2.855,
                2.86,
                2.865,
                2.87,
                2.875,
                2.88,
                2.8850000000000002,
                2.89,
                2.895,
                2.9,
                2.9050000000000002,
                2.91,
                2.915,
                2.92,
                2.9250000000000003,
                2.93,
                2.935,
                2.94,
                2.945,
                2.95,
                2.955,
                2.96,
                2.965,
                2.97,
                2.975,
                2.98,
                2.985,
                2.99,
                2.995,
                3.0,
                3.005,
                3.0100000000000002,
                3.015,
                3.02,
                3.025,
                3.0300000000000002,
                3.035,
                3.04,
                3.045,
                3.0500000000000003,
                3.055,
                3.06,
                3.065,
                3.0700000000000003,
                3.075,
                3.08,
                3.085,
                3.09,
                3.095,
                3.1,
                3.105,
                3.11,
                3.115,
                3.12,
                3.125,
                3.13,
                3.1350000000000002,
                3.14,
                3.145,
                3.15,
                3.1550000000000002,
                3.16,
                3.165,
                3.17,
                3.1750000000000003,
                3.18,
                3.185,
                3.19,
                3.1950000000000003,
                3.2,
                3.205,
                3.21,
                3.215,
                3.22,
                3.225,
                3.23,
                3.235,
                3.24,
                3.245,
                3.25,
                3.255,
                3.2600000000000002,
                3.265,
                3.27,
                3.275,
                3.2800000000000002,
                3.285,
                3.29,
                3.295,
                3.3000000000000003,
                3.305,
                3.31,
                3.315,
                3.3200000000000003,
                3.325,
                3.33,
                3.335,
                3.34,
                3.345,
                3.35,
                3.355,
                3.36,
                3.365,
                3.37,
                3.375,
                3.38,
                3.3850000000000002,
                3.39,
                3.395,
                3.4,
                3.4050000000000002,
                3.41,
                3.415,
                3.42,
                3.4250000000000003,
                3.43,
                3.435,
                3.44,
                3.4450000000000003,
                3.45,
                3.455,
                3.46,
                3.465,
                3.47,
                3.475,
                3.48,
                3.485,
                3.49,
                3.495,
                3.5,
                3.505,
                3.5100000000000002,
                3.515,
                3.52,
                3.525,
                3.5300000000000002,
                3.535,
                3.54,
                3.545,
                3.5500000000000003,
                3.555,
                3.56,
                3.565,
                3.5700000000000003,
                3.575,
                3.58,
                3.585,
                3.59,
                3.595,
                3.6,
                3.605,
                3.61,
                3.615,
                3.62,
                3.625,
                3.63,
                3.6350000000000002,
                3.64,
                3.645,
                3.65,
                3.6550000000000002,
                3.66,
                3.665,
                3.67,
                3.6750000000000003,
                3.68,
                3.685,
                3.69,
                3.6950000000000003,
                3.7,
                3.705,
                3.71,
                3.715,
                3.72,
                3.725,
                3.73,
                3.735,
                3.74,
                3.745,
                3.75,
                3.755,
                3.7600000000000002,
                3.765,
                3.77,
                3.775,
                3.7800000000000002,
                3.785,
                3.79,
                3.795,
                3.8000000000000003,
                3.805,
                3.81,
                3.815,
                3.8200000000000003,
                3.825,
                3.83,
                3.835,
                3.84,
                3.845,
                3.85,
                3.855,
                3.86,
                3.865,
                3.87,
                3.875,
                3.88,
                3.8850000000000002,
                3.89,
                3.895,
                3.9,
                3.9050000000000002,
                3.91,
                3.915,
                3.92,
                3.9250000000000003,
                3.93,
                3.935,
                3.94,
                3.9450000000000003,
                3.95,
                3.955,
                3.96,
                3.9650000000000003,
                3.97,
                3.975,
                3.98,
                3.985,
                3.99,
                3.995,
                4.0,
                4.005,
                4.01,
                4.015,
                4.0200000000000005,
                4.025,
                4.03,
                4.035,
                4.04,
                4.045,
                4.05,
                4.055,
                4.0600000000000005,
                4.065,
                4.07,
                4.075,
                4.08,
                4.085,
                4.09,
                4.095,
                4.1,
                4.105,
                4.11,
                4.115,
                4.12,
                4.125,
                4.13,
                4.135,
                4.14,
                4.1450000000000005,
                4.15,
                4.155,
                4.16,
                4.165,
                4.17,
                4.175,
                4.18,
                4.1850000000000005,
                4.19,
                4.195,
                4.2,
                4.205,
                4.21,
                4.215,
                4.22,
                4.225,
                4.23,
                4.235,
                4.24,
                4.245,
                4.25,
                4.255,
                4.26,
                4.265,
                4.2700000000000005,
                4.275,
                4.28,
                4.285,
                4.29,
                4.295,
                4.3,
                4.305,
                4.3100000000000005,
                4.315,
                4.32,
                4.325,
                4.33,
                4.335,
                4.34,
                4.345,
                4.3500000000000005,
                4.355,
                4.36,
                4.365,
                4.37,
                4.375,
                4.38,
                4.385,
                4.39,
                4.3950000000000005,
                4.4,
                4.405,
                4.41,
                4.415,
                4.42,
                4.425,
                4.43,
                4.4350000000000005,
                4.44,
                4.445,
                4.45,
                4.455,
                4.46,
                4.465,
                4.47,
                4.4750000000000005,
                4.48,
                4.485,
                4.49,
                4.495,
                4.5,
                4.505,
                4.51,
                4.515,
                4.5200000000000005,
                4.525,
                4.53,
                4.535,
                4.54,
                4.545,
                4.55,
                4.555,
                4.5600000000000005,
                4.565,
                4.57,
                4.575,
                4.58,
                4.585,
                4.59,
                4.595,
                4.6000000000000005,
                4.605,
                4.61,
                4.615,
                4.62,
                4.625,
                4.63,
                4.635,
                4.64,
                4.6450000000000005,
                4.65,
                4.655,
                4.66,
                4.665,
                4.67,
                4.675,
                4.68,
                4.6850000000000005,
                4.69,
                4.695,
                4.7,
                4.705,
                4.71,
                4.715,
                4.72,
                4.7250000000000005,
                4.73,
                4.735,
                4.74,
                4.745,
                4.75,
                4.755,
                4.76,
                4.765,
                4.7700000000000005,
                4.775,
                4.78,
                4.785,
                4.79,
                4.795,
                4.8,
                4.805,
                4.8100000000000005,
                4.815,
                4.82,
                4.825,
                4.83,
                4.835,
                4.84,
                4.845,
                4.8500000000000005,
                4.855,
                4.86,
                4.865,
                4.87,
                4.875,
                4.88,
                4.885,
                4.89,
                4.8950000000000005,
                4.9,
                4.905,
                4.91,
                4.915,
                4.92,
                4.925,
                4.93,
                4.9350000000000005,
                4.94,
                4.945,
                4.95,
                4.955,
                4.96,
                4.965,
                4.97,
                4.9750000000000005,
                4.98,
                4.985,
                4.99,
                4.995,
                5.0
            ],
            "order": 2,
            "uid": "3a75fa",
            "name": "data.1.x"
        },
        {
            "data": [
                0.0,
                -0.02469496837709367,
                -0.0506003827288183,
                -0.07772236565415376,
                -0.10606732728121988,
                -0.13564196678227408,
                -0.1664532739570232,
                -0.19850853088462309,
                -0.2318153136447574,
                -0.26638149410820117,
                -0.30221524179729325,
                -0.33932502581675705,
                -0.3777196168553256,
                -0.41740808925864487,
                -0.4583998231739438,
                -0.5007045067669798,
                -0.5443321385117823,
                -0.589293029553735,
                -0.6355978061465583,
                -0.6832574121637638,
                -0.7322831116851775,
                -0.7826864916591416,
                -0.8344794646410247,
                -0.8876742716086872,
                -0.9422834848555676,
                -0.9983200109620735,
                -1.0557970938459784,
                -1.114728317892549,
                -1.1751276111651363,
                -1.2370092486969961,
                -1.3003878558651125,
                -1.365278411846824,
                -1.4316962531600668,
                -1.499657077288076,
                -1.5691769463893954,
                -1.6402722910940806,
                -1.7129599143869843,
                -1.787256995579049,
                -1.8631810943675382,
                -1.9407501549861736,
                -2.019982510446154,
                -2.100896886869059,
                -2.183512407912663,
                -2.2678485992907005,
                -2.353925393387666,
                -2.4417631339697143,
                -2.531382580992798,
                -2.6228049155091666,
                -2.7160517446733885,
                -2.8111451068490796,
                -2.9081074768175483,
                -3.006961771089583,
                -3.1077313533216384,
                -3.2104400398377084,
                -3.3151121052581782,
                -3.4217722882369928,
                -3.5304457973085004,
                -3.6411583168453485,
                -3.7539360131288393,
                -3.868805540533183,
                -3.9857940478251113,
                -4.104929184580334,
                -4.22623910771836,
                -4.34975248815723,
                -4.475498517589721,
                -4.603506915382647,
                -4.733807935600856,
                -4.866432374157613,
                -5.00141157609304,
                -5.138777442982337,
                -5.278562440475548,
                -5.420799605970621,
                -5.565522556421627,
                -5.7127654962839225,
                -5.862563225598196,
                -6.014951148215251,
                -6.169965280163505,
                -6.3276422581611875,
                -6.48801934827521,
                -6.651134454728798,
                -6.817026128859937,
                -6.985733578232772,
                -7.157296675904083,
                -7.331755969847069,
                -7.509152692534624,
                -7.689528770684409,
                -7.872926835167989,
                -8.0593902310864,
                -8.24896302801453,
                -8.441690030416696,
                -8.637616788235949,
                -8.836789607659528,
                -9.039255562063078,
                -9.245062503136175,
                -9.454259072191803,
                -9.666894711662458,
                -9.883019676785581,
                -10.102685047481106,
                -10.325942740423919,
                -10.552845521314053,
                -10.783447017347585,
                -11.01780172989111,
                -11.255965047362833,
                -11.497993258323316,
                -11.743943564778958,
                -11.993874095701372,
                -12.247843920765833,
                -12.50591306431207,
                -12.768142519530677,
                -13.03459426287852,
                -13.305331268726503,
                -13.580417524243234,
                -13.85991804451801,
                -14.143898887926776,
                -14.432427171744655,
                -14.725571088008733,
                -15.02339991963486,
                -15.325984056792288,
                -15.633395013539984,
                -15.945705444728576,
                -16.262989163171916,
                -16.585321157092338,
                -16.912777607843676,
                -17.245435907916324,
                -17.58337467922851,
                -17.92667379170813,
                -18.27541438216957,
                -18.629678873489933,
                -18.989550994089228,
                -19.355115797719087,
                -19.726459683564773,
                -20.103670416665125,
                -20.486837148655333,
                -20.87605043883742,
                -21.27140227558343,
                -21.67298609807637,
                -22.080896818394024,
                -22.495230843940888,
                -22.916086100233525,
                -23.3435620540447,
                -23.77775973691181,
                -24.218781769015106,
                -24.66673238343139,
                -25.121717450768937,
                -25.583844504189397,
                -26.053222764822657,
                -26.52996316758066,
                -27.01417838737622,
                -27.50598286575312,
                -28.005492837933723,
                -28.51282636029052,
                -29.028103338248076,
                -29.551445554622017,
                -30.08297669840169,
                -30.62282239398339,
                -31.171110230860982,
                -31.727969793780918,
                -32.2935326933689,
                -32.8679325972353,
                -33.45130526156675,
                -34.043788563211336,
                -34.64552253226506,
                -35.25664938516712,
                -35.87731355831198,
                -36.5076617421861,
                -37.147842916037426,
                -37.798008383085765,
                -38.458311806282474,
                -39.12890924462781,
                -39.80995919005464,
                -40.50162260488707,
                -41.204062959883,
                -41.91744627286955,
                -42.64194114798038,
                -43.37771881550441,
                -44.12495317235502,
                -44.88382082316975,
                -45.654501122049695,
                -46.43717621494888,
                -47.232031082723445,
                -48.03925358485081,
                -48.85903450382923,
                -49.691567590268136,
                -50.53704960868001,
                -51.39568038398459,
                -52.26766284873634,
                -53.15320309108644,
                -54.05251040349054,
                -54.96579733217388,
                -55.89327972736537,
                -56.83517679431259,
                -57.79171114508971,
                -58.76310885121064,
                -59.74959949705967,
                -60.75141623415255,
                -61.7687958362405,
                -62.80197875527031,
                -63.85120917821388,
                -64.9167350847804,
                -65.99880830602493,
                -67.09768458386735,
                -68.21362363153538,
                -69.34688919494647,
                -70.49774911504264,
                -71.66647539109306,
                -72.85334424497975,
                -74.0586361864809,
                -75.28263607956784,
                -76.52563320973107,
                -77.78792135235116,
                -79.06979884213109,
                -80.37156864360574,
                -81.69353842274603,
                -83.03602061967399,
                -84.39933252250624,
                -85.78379634234318,
                -87.18973928942191,
                -88.61749365045038,
                -90.06739686714157,
                -91.53979161596594,
                -93.03502588914102,
                -94.55345307687752,
                -96.09543205090102,
                -97.66132724926938,
                -99.25150876250547,
                -100.86635242106617,
                -102.50623988416768,
                -104.17155872998855,
                -105.86270254727154,
                -107.58007102834627,
                -109.32407006359405,
                -111.09511183737794,
                -112.89361492546016,
                -114.72000439393007,
                -116.57471189966623,
                -118.45817579235603,
                -120.37084121809718,
                -122.31316022460545,
                -124.2855918680537,
                -126.28860232156711,
                -128.32266498540068,
                -130.38826059882462,
                -132.48587735374448,
                -134.61601101008245,
                -136.7791650129475,
                -138.97585061162178,
                -141.20658698039153,
                -143.471901341251,
                -145.77232908850837,
                -148.10841391532315,
                -150.48070794220519,
                -152.88977184750493,
                -155.336174999927,
                -157.82049559309684,
                -160.3433207822139,
                -162.90524682282228,
                -165.5068792117324,
                -168.1488328301268,
                -170.8317320888838,
                -173.55621107615352,
                -176.32291370722112,
                -179.13249387669237,
                -181.9856156130382,
                -184.8829532355339,
                -187.82519151363084,
                -190.81302582879772,
                -193.84716233887013,
                -196.92831814494716,
                -200.05722146087388,
                -203.2346117853509,
                -206.46124007671048,
                -209.7378689304015,
                -213.06527275922446,
                -216.44423797635972,
                -219.8755631812317,
                -223.36005934825351,
                -226.89855001849602,
                -230.4918714943273,
                -234.14087303706793,
                -237.8464170677091,
                -241.60937937074107,
                -245.4306493011398,
                -249.31112999456104,
                -253.25173858079125,
                -257.2534064005063,
                -261.31707922538857,
                -265.44371748165446,
                -269.63429647704584,
                -273.8898066313391,
                -278.21125371042444,
                -282.5996590640135,
                -287.0560598670295,
                -291.58150936473766,
                -296.177077121674,
                -300.84384927443045,
                -305.5829287883576,
                -310.3954357182443,
                -315.2825074730358,
                -320.2452990846547,
                -325.28498348098555,
                -330.40275176309046,
                -335.5998134867185,
                -340.87739694817793,
                -346.2367494746363,
                -351.6791377189205,
                -357.2058479588818,
                -362.818186401401,
                -368.5174794911032,
                -374.3050742238549,
                -380.1823384651196,
                -386.1506612732447,
                -392.2114532277577,
                -398.3661467627488,
                -404.61619650541866,
                -410.96307961987117,
                -417.40829615623306,
                -423.95336940518234,
                -430.5998462579694,
                -437.3492975720159,
                -444.2033185421786,
                -451.1635290777638,
                -458.23157418538494,
                -465.4091243577496,
                -472.69787596847164,
                -480.0995516729996,
                -487.6159008157563,
                -495.2486998435868,
                -502.99975272561124,
                -510.87089137958367,
                -518.8639761048545,
                -526.9808960220423,
                -535.2235695195168,
                -543.5939447067991,
                -552.0939998749865,
                -560.7257439643101,
                -569.4912170389375,
                -578.3924907691294,
                -587.4316689208675,
                -596.6108878530683,
                -605.932317022499,
                -615.3981594965161,
                -625.0106524737489,
                -634.7720678128483,
                -644.6847125694276,
                -654.7509295413223,
                -664.9730978222975,
                -675.353633364333,
                -685.8949895486201,
                -696.5996577654039,
                -707.4701680028105,
                -718.5090894447945,
                -729.7190310783515,
                -741.1026423101373,
                -752.6626135926409,
                -764.4016770600571,
                -776.3226071740114,
                -788.4282213792882,
                -800.7213807697182,
                -813.2049907643818,
                -825.8820017942887,
                -838.7554099996952,
                -851.8282579382258,
                -865.1036353039638,
                -878.5846796576836,
                -892.2745771683958,
                -906.1765633663796,
                -920.2939239078827,
                -934.6299953516677,
                -949.1881659475886,
                -963.9718764373847,
                -978.9846208678812,
                -994.2299474167867,
                -1009.7114592312853,
                -1025.4328152796202,
                -1041.3977312158706,
                -1057.609980258125,
                -1074.0733940802609,
                -1090.7918637175378,
                -1107.7693404862237,
                -1125.009836917465,
                -1142.5174277056256,
                -1160.296250671319,
                -1178.3505077393586,
                -1196.6844659318576,
                -1215.3024583767174,
                -1234.208885331738,
                -1253.4082152245928,
                -1272.9049857089176,
                -1292.7038047367587,
                -1312.8093516476372,
                -1333.2263782744844,
                -1353.9597100667097,
                -1375.01424723067,
                -1396.3949658878053,
                -1418.1069192507166,
                -1440.1552388174646,
                -1462.5451355843707,
                -1485.2819012776063,
                -1508.3709096038626,
                -1531.8176175203955,
                -1555.6275665247485,
                -1579.8063839644515,
                -1604.3597843670157,
                -1629.2935707905285,
                -1654.6136361951733,
                -1680.325964835999,
                -1706.4366336772634,
                -1732.9518138286908,
                -1759.8777720039782,
                -1787.220872001898,
                -1814.9875762103472,
                -1843.1844471336935,
                -1871.818148943791,
                -1900.8954490550143,
                -1930.4232197237025,
                -1960.408439672378,
                -1990.8581957391273,
                -2021.7796845525347,
                -2053.1802142325673,
                -2085.067206117806,
                -2117.448196519438,
                -2150.3308385024216,
                -2183.722903694245,
                -2217.632284121705,
                -2252.0669940761472,
                -2287.035172007595,
                -2322.5450824482277,
                -2358.6051179656565,
                -2395.2238011464597,
                -2432.40978661045,
                -2470.171863056143,
                -2508.5189553379178,
                -2547.4601265753568,
                -2587.004580295261,
                -2627.1616626068544,
                -2667.9408644106816,
                -2709.3518236417317,
                -2751.404327547307,
                -2794.1083150001846,
                -2837.473878847618,
                -2881.511268296715,
                -2926.23089133679,
                -2971.643317199228,
                -3017.7592788554634,
                -3064.5896755536605,
                -3112.145575394686,
                -3160.438217947995,
                -3209.479016908037,
                -3259.279562791823,
                -3309.8516256782746,
                -3361.207157990018,
                -3413.3582973182706,
                -3466.3173692914957,
                -3520.096890488491,
                -3574.7095713966146,
                -3630.168319415836,
                -3686.486241909328,
                -3743.6766493013183,
                -3801.7530582229324,
                -3860.729194706775,
                -3920.618997430999,
                -3981.436621013635,
                -4043.1964393579533,
                -4105.913049049661,
                -4169.601272806714,
                -4234.276162982592,
                -4299.953005123827,
                -4366.647321582672,
                -4434.374875185704,
                -4503.151672959292,
                -4572.9939699127635,
                -4643.91827288018,
                -4715.941344421644,
                -4789.08020678503,
                -4863.352145929093,
                -4938.774715608917,
                -5015.36574152464,
                -5093.143325534458,
                -5172.125849932903,
                -5252.331981795386,
                -5333.780677390062,
                -5416.491186658038,
                -5500.48305776298,
                -5585.776141711222,
                -5672.390597043434,
                -5760.346894598982,
                -5849.665822354089,
                -5940.368490334968,
                -6032.476335607048,
                -6126.01112734151,
                -6220.994971960303,
                -6317.450318360877,
                -6415.399963221851,
                -6514.867056390883,
                -6615.8751063559985,
                -6718.4479858017,
                -6822.609937251136,
                -6928.385578795681,
                -7035.799909913292,
                -7144.878317376989,
                -7255.646581254877,
                -7368.130881003117,
                -7482.357801653303,
                -7598.3543400956705,
                -7716.147911459674,
                -7835.766355593386,
                -7957.237943643298,
                -8080.591384736039,
                -8205.855832763627,
                -8333.060893273818,
                -8462.236630467209,
                -8593.413574302755,
                -8726.622727713337,
                -8861.895573933147,
                -8999.264083938559,
                -9138.7607240043,
                -9280.418463376665,
                -9424.270782065621,
                -9570.351678757603,
                -9718.69567885093,
                -9869.33784261568,
                -10022.313773479991,
                -10177.659626444722,
                -10335.4121166285,
                -10495.608527945116,
                -10658.286721915376,
                -10823.485146615463,
                -10991.242845763914,
                -11161.599467949385,
                -11334.59527600138,
                -11510.271156506135,
                -11688.668629469938,
                -11869.829858132149,
                -12053.79765893024,
                -12240.615511619219,
                -12430.327569547837,
                -12622.978670093973,
                -12818.61434526169,
                -13017.280832442488,
                -13219.025085343234,
                -13423.894785083408,
                -13631.938351464281,
                -13843.204954412648,
                -14057.74452560187,
                -14275.607770252944,
                -14496.846179118393,
                -14721.512040651825,
                -14949.658453366004,
                -15181.33933838239,
                -15416.60945217509,
                -15655.524399512255,
                -15898.14064659793,
                -16144.515534417553,
                -16394.707292290146,
                -16648.775051630506,
                -16906.77885992458,
                -17168.779694921344,
                -17434.839479044556,
                -17705.021094027765,
                -17979.388395776066,
                -18258.00622945809,
                -18540.940444831755,
                -18828.25791180755,
                -19120.02653625279,
                -19416.31527604086,
                -19717.194157348953,
                -20022.734291208413,
                -20333.007890311397,
                -20648.08828607796,
                -20968.0499459875,
                -21292.968491178748,
                -21622.92071432239,
                -21957.984597770595,
                -22298.23933198768,
                -22643.76533426635,
                -22994.644267733875,
                -23350.959060652694,
                -23712.793926020066,
                -24080.23438147132,
                -24453.367269491475,
                -24832.280777939963,
                -25217.064460893354,
                -25607.809259810943,
                -26004.60752502825,
                -26407.553037583504,
                -26816.741031382284,
                -27232.268215705488,
                -27654.23279806605,
                -28082.734507419704,
                -28517.87461773541,
                -28959.755971930845,
                -29408.483006178747,
                -29864.16177458985,
                -30326.899974278163,
                -30796.806970814545,
                -31273.993824074696,
                -31758.5733144875,
                -32250.659969690052,
                -32750.370091595625,
                -33257.82178388095,
                -33773.13497989941,
                -34296.43147102657,
                -34827.83493544485,
                -35367.470967374284,
                -35915.467106755874,
                -36471.95286939501,
                -37037.059777571834,
                -37610.921391125674,
                -38193.67333902129,
                -38785.45335140395,
                -39386.40129215117,
                -39996.65919192878,
                -40616.37128175906,
                -41245.684027108946,
                -41884.7461625063,
                -42533.708726692494,
                -43192.72509831955,
                -43861.95103220033,
                -44541.54469612033,
                -45231.66670821971,
                -45932.48017495452,
                -46644.15072964597,
                -47366.84657162696,
                -48100.73850599501,
                -48845.99998398111,
                -49602.80714394395,
                -50371.33885299921,
                -51151.77674929379,
                -51944.305284935006,
                -52749.111769584764,
                -53566.38641472917,
                -54396.32237863392,
                -55239.115811996206,
                -56094.96590430381,
                -56964.07493091241,
                -57846.64830085223,
                -58742.894605375324,
                -59653.02566725493,
                -60577.2565908486,
                -61515.80581293687,
                -62468.89515434964,
                -63436.74987239218,
                -64419.59871408353,
                -65417.67397021948,
                -66431.21153027326,
                -67460.45093814669,
                -68505.63544878492,
                -69567.01208566855,
                -70644.8316991961,
                -71739.34902597117,
                -72850.82274900792,
                -73979.51555886945,
                -75125.69421575316,
                -76289.62961253806,
                -77471.59683880872,
                -78671.87524587127,
                -79890.74851277634,
                -81128.50471336517,
                -82385.43638435414,
                -83661.84059447421,
                -84958.01901468147,
                -86274.27798945532,
                -87610.92860920126,
                -88968.28678377545,
                -90346.67331714813,
                -91746.41398322389,
                -93167.83960283647,
                -94611.2861219364,
                -96077.09469098998,
                -97565.61174560821,
                -99077.18908842496,
                -100612.18397224351,
                -102170.95918447123,
                -103753.88313286238,
                -105361.32993258917,
                -106993.67949466182,
                -108651.31761571835,
                -110334.63606920547,
                -112044.03269797203,
                -113779.91150829691,
                -115542.68276537368,
                -117332.76309027447,
                -119150.5755584159,
                -120996.54979955078,
                -122871.1220993085,
                -124774.73550230877,
                -126707.83991687276,
                -128670.8922213563,
                -130664.35637213057,
                -132688.7035132356,
                -134744.41208773252,
                -136831.9679507807,
                -138951.86448446725,
                -141104.60271441474,
                -143290.69142819595,
                -145510.64729558304,
                -147764.99499065927,
                -150054.26731582312,
                -152379.00532771286,
                -154739.75846508236,
                -157137.08467865782,
                -159571.5505630064,
                -162043.73149044745,
                -164554.21174703861,
                -167103.58467066864,
                -169692.45279128937,
                -172321.42797332033,
                -174991.13156025938,
                -177702.19452153382,
                -180455.25760162654,
                -183250.9714715122,
                -186089.9968824397,
                -188973.00482209722,
                -191900.67667319608,
                -194873.70437451193,
                -197892.79058442052,
                -200958.64884696703,
                -204072.00376050823,
                -207233.59114896724,
                -210444.1582357413,
                -213704.46382030394,
                -217015.27845754276,
                -220377.384639876,
                -223791.57698219008,
                -227258.6624096423,
                -230779.46034837328,
                -234354.8029191734,
                -237985.53513415024,
                -241672.51509644208,
                -245416.61420302614,
                -249218.7173506678,
                -253079.7231450616,
                -257000.54411321122,
                -260982.10691910028,
                -265025.35258270404,
                -269131.23670239444,
                -273300.72968078987,
                -277534.81695410504,
                -281834.49922505283,
                -286200.79269935493,
                -290634.7293259162,
                -295137.3570407201,
                -299709.7400145026,
                -304352.95890426263,
                -309068.11110866955,
                -313856.311027427,
                -318718.690324655,
                -323656.39819635253,
                -328670.60164200363,
                -333762.48574039066,
                -338933.25392968184,
                -344184.1282918559,
                -349516.34984153556,
                -354931.17881929374,
                -360429.894989504,
                -366013.7979428064,
                -371684.2074032577,
                -377442.46354024153,
                -383289.92728520907,
                -389227.980653328,
                -395258.027070114,
                -401381.49170312233,
                -407599.82179877826,
                -413914.4870244256,
                -420326.97981567425,
                -426838.81572912907,
                -433451.5338005832,
                -440166.69690876023,
                -446985.8921446921,
                -453910.731186819,
                -460942.8506819005,
                -468083.91263182805,
                -475335.6047864292,
                -482699.6410423584,
                -490177.76184816664,
                -497771.7346156464,
                -505483.3541375499,
                -513314.4430117778,
                -521266.85207214067,
                -529342.4608257923,
                -537543.1778974414,
                -545870.9414804438,
                -554327.7197948836,
                -562915.5115527514,
                -571636.346430328,
                -580492.2855478873,
                -589485.4219568304,
                -598617.8811343671,
                -607891.8214858589,
                -617309.4348549478,
                -626872.9470415856,
                -636584.6183280884,
                -646446.7440133425,
                -656461.6549552853,
                -666631.7181217901,
                -676959.3371500858,
                -687446.9529148436,
                -698097.0441050625,
                -708912.1278098954,
                -719894.7601135478,
                -731047.5366993938,
                -742373.0934634518,
                -753874.1071373641,
                -765553.2959210258,
                -777413.4201250181,
                -789457.2828229903,
                -801687.7305141519,
                -814107.6537960258,
                -826719.9880476253,
                -839527.7141232139,
                -852533.859056814,
                -865741.496777629,
                -879153.7488365496,
                -892773.7851439138,
                -906604.8247186986,
                -920650.1364493165,
                -934913.0398661984,
                -949396.905926347,
                -964105.1578100428,
                -979041.2717298933,
                -994208.777752417,
                -1009611.2606323546,
                -1025252.360659905,
                -1041135.774521088,
                -1057265.2561714354,
                -1073644.6177232163,
                -1090277.73034641,
                -1107168.5251836341,
                -1124320.9942792475,
                -1141739.191522849,
                -1159427.2336073902,
                -1177389.3010021334,
                -1195629.638940682,
                -1214152.5584243166,
                -1232962.437240877,
                -1252063.7209994278,
                -1271460.924180952,
                -1291158.6312053243,
                -1311161.497514812,
                -1331474.250674364,
                -1352101.6914889424,
                -1373048.695138167,
                -1394320.2123285357,
                -1415921.270463498,
                -1437856.9748316505,
                -1460132.5098133467,
                -1482753.140105992,
                -1505724.2119683297,
                -1529051.154483996,
                -1552739.4808446548,
                -1576794.789653009,
                -1601222.7662459982,
                -1626029.184038499,
                -1651219.9058878347,
                -1676800.8854794323,
                -1702778.1687339412,
                -1729157.895236152,
                -1755946.2996860538,
                -1783149.7133723693,
                -1810774.5656689212,
                -1838827.3855541768,
                -1867314.8031543354,
                -1896243.5513103232,
                -1925620.4671690601,
                -1955452.4937993824,
                -1985746.6818329967,
                -2016510.1911308588,
                -2047750.2924753649,
                -2079474.3692887619,
                -2111689.9193781754,
                -2144404.5567076765,
                -2177626.0131977987,
                -2211362.1405529324,
                -2245620.9121170323,
                -2280410.4247580743,
                -2315738.9007817,
                -2351614.6898745173,
                -2388046.271077499,
                -2425042.2547899564,
                -2462611.3848045603,
                -2500762.540373887,
                -2539504.738308977,
                -2578847.135110412,
                -2618799.0291323983,
                -2659369.862780384,
                -2700569.2247427143,
                -2742406.8522568694,
                -2784892.6334108,
                -2828036.6094799256,
                -2871848.977300331,
                -2916340.091678734,
                -2961520.467839781,
                -3007400.783911267,
                -3053991.8834478455,
                -3101304.7779938467,
                -3149350.6496857894,
                -3198140.85389522,
                -3247686.9219124876,
                -3298000.5636721025,
                -3349093.6705203108,
                -3400978.318025548,
                -3453666.768832433,
                -3507171.4755599736,
                -3561505.083744673,
                -3616680.4348292327,
                -3672710.5691975546,
                -3729608.7292567603,
                -3787388.3625669624,
                -3846063.1250195196,
                -3905646.884064527,
                -3966153.721988313,
                -4027597.939241706,
                -4089994.0578198684,
                -4153356.824694487,
                -4217701.215299133,
                -4283042.43706863,
                -4349395.933033239,
                -4416777.385468532,
                -4485202.719601814,
                -4554688.107375954,
                -4625249.971271542,
                -4696904.988188242,
                -4769670.093386285,
                -4843562.484489027,
                -4918599.625547506,
                -4994799.251167971,
                -5072179.370703361,
                -5150758.272509714,
                -5230554.528268513,
                -5311586.9973760005,
                -5393874.831400493,
                -5477437.478608743,
                -5562294.6885624295,
                -5648466.5167858545,
                -5735973.329505955,
                -5824835.808465744,
                -5915074.955812328,
                -6006712.099060641,
                -6099768.896134088,
                -6194267.340483268,
                -6290229.766284009,
                -6387678.853715917,
                -6486637.634322716,
                -6587129.496455618,
                -6689178.190801036,
                -6792807.835993914,
                -6898042.92431804,
                -7004908.327494658,
                -7113429.302560753,
                -7223631.497838422,
                -7335540.9589966955,
                -7449184.135207297,
                -7564587.885395751,
                -7681779.484589338,
                -7800786.630363396,
                -7921637.449387487,
                -8044360.504072976,
                -8168984.799323594,
                -8295539.789390587,
                -8424055.384834064,
                -8554561.959592188,
                -8687090.358159881,
                -8821671.902878752,
                -8958338.401339957,
                -9097122.153901746,
                -9238055.961323459,
                -9381173.132517813,
                -9526507.492423275,
                -9674093.389998391,
                -9823965.70633997,
                -9976159.862927046,
                -10130711.829992522,
                -10287658.135024555,
                -10447035.871399613,
                -10608882.707149288,
                -10773236.893862914,
                -10940137.275728134,
                -11109623.298711486,
                -11281735.01988125,
                -11456513.116874699,
                -11633998.897512037,
                -11814234.309559269,
                -11997261.950642318,
                -12183125.078314735,
                -12371867.620281378,
                -12563534.184780482,
                -12758170.071126556,
                -12955821.280416632,
                -13156534.526402358,
                -13360357.24653053,
                -13567337.613154676,
                -13777524.544920307,
                -13990967.718326572,
                -14207717.57946702,
                -14427825.355952248,
                -14651343.069017252,
                -14878323.545816364,
                -15108820.431908652,
                -15342888.203936737,
                -15580582.182502054,
                -15821958.545239547
            ],
            "order": 3,
            "uid": "d6f966",
            "name": "data.1.y"
        }
    ]
}