From 106426e489f55f74f2ad817b5a7e20a724a780a9 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sat, 6 Oct 2018 12:51:47 -0400 Subject: [PATCH 01/34] Add initial template validation logic --- codegen/__init__.py | 31 + codegen/datatypes.py | 24 +- codegen/utils.py | 21 +- plotly/graph_objs/_figure.py | 25 +- plotly/graph_objs/_figurewidget.py | 25 +- plotly/graph_objs/_layout.py | 82 +- plotly/graph_objs/layout/__init__.py | 2 + plotly/graph_objs/layout/_template.py | 249 ++++ plotly/graph_objs/layout/template/__init__.py | 3 + plotly/graph_objs/layout/template/_data.py | 1238 +++++++++++++++++ plotly/graph_objs/layout/template/_layout.py | 1 + .../layout/template/data/__init__.py | 35 + .../graph_objs/layout/template/data/_area.py | 1 + .../graph_objs/layout/template/data/_bar.py | 1 + .../layout/template/data/_barpolar.py | 1 + .../graph_objs/layout/template/data/_box.py | 1 + .../layout/template/data/_candlestick.py | 1 + .../layout/template/data/_carpet.py | 1 + .../layout/template/data/_choropleth.py | 1 + .../graph_objs/layout/template/data/_cone.py | 1 + .../layout/template/data/_contour.py | 1 + .../layout/template/data/_contourcarpet.py | 1 + .../layout/template/data/_heatmap.py | 1 + .../layout/template/data/_heatmapgl.py | 1 + .../layout/template/data/_histogram.py | 1 + .../layout/template/data/_histogram2d.py | 1 + .../template/data/_histogram2dcontour.py | 1 + .../layout/template/data/_mesh3d.py | 1 + .../graph_objs/layout/template/data/_ohlc.py | 1 + .../layout/template/data/_parcoords.py | 1 + .../graph_objs/layout/template/data/_pie.py | 1 + .../layout/template/data/_pointcloud.py | 1 + .../layout/template/data/_sankey.py | 1 + .../layout/template/data/_scatter.py | 1 + .../layout/template/data/_scatter3d.py | 1 + .../layout/template/data/_scattercarpet.py | 1 + .../layout/template/data/_scattergeo.py | 1 + .../layout/template/data/_scattergl.py | 1 + .../layout/template/data/_scattermapbox.py | 1 + .../layout/template/data/_scatterpolar.py | 1 + .../layout/template/data/_scatterpolargl.py | 1 + .../layout/template/data/_scatterternary.py | 1 + .../graph_objs/layout/template/data/_splom.py | 1 + .../layout/template/data/_streamtube.py | 1 + .../layout/template/data/_surface.py | 1 + .../graph_objs/layout/template/data/_table.py | 1 + .../layout/template/data/_violin.py | 1 + plotly/validators/_layout.py | 25 +- plotly/validators/layout/_template.py | 15 +- plotly/validators/layout/template/__init__.py | 2 + plotly/validators/layout/template/_data.py | 130 ++ plotly/validators/layout/template/_layout.py | 16 + .../layout/template/data/__init__.py | 35 + .../validators/layout/template/data/_area.py | 16 + .../validators/layout/template/data/_bar.py | 16 + .../layout/template/data/_barpolar.py | 19 + .../validators/layout/template/data/_box.py | 16 + .../layout/template/data/_candlestick.py | 21 + .../layout/template/data/_carpet.py | 19 + .../layout/template/data/_choropleth.py | 21 + .../validators/layout/template/data/_cone.py | 16 + .../layout/template/data/_contour.py | 19 + .../layout/template/data/_contourcarpet.py | 21 + .../layout/template/data/_heatmap.py | 19 + .../layout/template/data/_heatmapgl.py | 19 + .../layout/template/data/_histogram.py | 19 + .../layout/template/data/_histogram2d.py | 21 + .../template/data/_histogram2dcontour.py | 21 + .../layout/template/data/_mesh3d.py | 19 + .../validators/layout/template/data/_ohlc.py | 16 + .../layout/template/data/_parcoords.py | 19 + .../validators/layout/template/data/_pie.py | 16 + .../layout/template/data/_pointcloud.py | 21 + .../layout/template/data/_sankey.py | 19 + .../layout/template/data/_scatter.py | 19 + .../layout/template/data/_scatter3d.py | 19 + .../layout/template/data/_scattercarpet.py | 21 + .../layout/template/data/_scattergeo.py | 21 + .../layout/template/data/_scattergl.py | 19 + .../layout/template/data/_scattermapbox.py | 21 + .../layout/template/data/_scatterpolar.py | 21 + .../layout/template/data/_scatterpolargl.py | 21 + .../layout/template/data/_scatterternary.py | 21 + .../validators/layout/template/data/_splom.py | 19 + .../layout/template/data/_streamtube.py | 21 + .../layout/template/data/_surface.py | 19 + .../validators/layout/template/data/_table.py | 19 + .../layout/template/data/_violin.py | 19 + 88 files changed, 2529 insertions(+), 138 deletions(-) create mode 100644 plotly/graph_objs/layout/_template.py create mode 100644 plotly/graph_objs/layout/template/__init__.py create mode 100644 plotly/graph_objs/layout/template/_data.py create mode 100644 plotly/graph_objs/layout/template/_layout.py create mode 100644 plotly/graph_objs/layout/template/data/__init__.py create mode 100644 plotly/graph_objs/layout/template/data/_area.py create mode 100644 plotly/graph_objs/layout/template/data/_bar.py create mode 100644 plotly/graph_objs/layout/template/data/_barpolar.py create mode 100644 plotly/graph_objs/layout/template/data/_box.py create mode 100644 plotly/graph_objs/layout/template/data/_candlestick.py create mode 100644 plotly/graph_objs/layout/template/data/_carpet.py create mode 100644 plotly/graph_objs/layout/template/data/_choropleth.py create mode 100644 plotly/graph_objs/layout/template/data/_cone.py create mode 100644 plotly/graph_objs/layout/template/data/_contour.py create mode 100644 plotly/graph_objs/layout/template/data/_contourcarpet.py create mode 100644 plotly/graph_objs/layout/template/data/_heatmap.py create mode 100644 plotly/graph_objs/layout/template/data/_heatmapgl.py create mode 100644 plotly/graph_objs/layout/template/data/_histogram.py create mode 100644 plotly/graph_objs/layout/template/data/_histogram2d.py create mode 100644 plotly/graph_objs/layout/template/data/_histogram2dcontour.py create mode 100644 plotly/graph_objs/layout/template/data/_mesh3d.py create mode 100644 plotly/graph_objs/layout/template/data/_ohlc.py create mode 100644 plotly/graph_objs/layout/template/data/_parcoords.py create mode 100644 plotly/graph_objs/layout/template/data/_pie.py create mode 100644 plotly/graph_objs/layout/template/data/_pointcloud.py create mode 100644 plotly/graph_objs/layout/template/data/_sankey.py create mode 100644 plotly/graph_objs/layout/template/data/_scatter.py create mode 100644 plotly/graph_objs/layout/template/data/_scatter3d.py create mode 100644 plotly/graph_objs/layout/template/data/_scattercarpet.py create mode 100644 plotly/graph_objs/layout/template/data/_scattergeo.py create mode 100644 plotly/graph_objs/layout/template/data/_scattergl.py create mode 100644 plotly/graph_objs/layout/template/data/_scattermapbox.py create mode 100644 plotly/graph_objs/layout/template/data/_scatterpolar.py create mode 100644 plotly/graph_objs/layout/template/data/_scatterpolargl.py create mode 100644 plotly/graph_objs/layout/template/data/_scatterternary.py create mode 100644 plotly/graph_objs/layout/template/data/_splom.py create mode 100644 plotly/graph_objs/layout/template/data/_streamtube.py create mode 100644 plotly/graph_objs/layout/template/data/_surface.py create mode 100644 plotly/graph_objs/layout/template/data/_table.py create mode 100644 plotly/graph_objs/layout/template/data/_violin.py create mode 100644 plotly/validators/layout/template/__init__.py create mode 100644 plotly/validators/layout/template/_data.py create mode 100644 plotly/validators/layout/template/_layout.py create mode 100644 plotly/validators/layout/template/data/__init__.py create mode 100644 plotly/validators/layout/template/data/_area.py create mode 100644 plotly/validators/layout/template/data/_bar.py create mode 100644 plotly/validators/layout/template/data/_barpolar.py create mode 100644 plotly/validators/layout/template/data/_box.py create mode 100644 plotly/validators/layout/template/data/_candlestick.py create mode 100644 plotly/validators/layout/template/data/_carpet.py create mode 100644 plotly/validators/layout/template/data/_choropleth.py create mode 100644 plotly/validators/layout/template/data/_cone.py create mode 100644 plotly/validators/layout/template/data/_contour.py create mode 100644 plotly/validators/layout/template/data/_contourcarpet.py create mode 100644 plotly/validators/layout/template/data/_heatmap.py create mode 100644 plotly/validators/layout/template/data/_heatmapgl.py create mode 100644 plotly/validators/layout/template/data/_histogram.py create mode 100644 plotly/validators/layout/template/data/_histogram2d.py create mode 100644 plotly/validators/layout/template/data/_histogram2dcontour.py create mode 100644 plotly/validators/layout/template/data/_mesh3d.py create mode 100644 plotly/validators/layout/template/data/_ohlc.py create mode 100644 plotly/validators/layout/template/data/_parcoords.py create mode 100644 plotly/validators/layout/template/data/_pie.py create mode 100644 plotly/validators/layout/template/data/_pointcloud.py create mode 100644 plotly/validators/layout/template/data/_sankey.py create mode 100644 plotly/validators/layout/template/data/_scatter.py create mode 100644 plotly/validators/layout/template/data/_scatter3d.py create mode 100644 plotly/validators/layout/template/data/_scattercarpet.py create mode 100644 plotly/validators/layout/template/data/_scattergeo.py create mode 100644 plotly/validators/layout/template/data/_scattergl.py create mode 100644 plotly/validators/layout/template/data/_scattermapbox.py create mode 100644 plotly/validators/layout/template/data/_scatterpolar.py create mode 100644 plotly/validators/layout/template/data/_scatterpolargl.py create mode 100644 plotly/validators/layout/template/data/_scatterternary.py create mode 100644 plotly/validators/layout/template/data/_splom.py create mode 100644 plotly/validators/layout/template/data/_streamtube.py create mode 100644 plotly/validators/layout/template/data/_surface.py create mode 100644 plotly/validators/layout/template/data/_table.py create mode 100644 plotly/validators/layout/template/data/_violin.py diff --git a/codegen/__init__.py b/codegen/__init__.py index 19165685f8f..9decd7cb4ae 100644 --- a/codegen/__init__.py +++ b/codegen/__init__.py @@ -13,6 +13,7 @@ write_data_validator_py, get_data_validator_instance) + # Import notes # ------------ # Nothing from the plotly/ package should be imported during code @@ -22,6 +23,32 @@ # codegen/ package, and helpers used both during code generation and at # runtime should reside in the _plotly_utils/ package. # ---------------------------------------------------------------------------- +def preprocess_schema(plotly_schema): + """ + Central location to make changes to schema before it's seen by the + PlotlyNode classes + """ + layout = plotly_schema['layout']['layoutAttributes'] + + template_description = layout['template']['description'] + + # Create codegen-friendly template scheme + template = { + "data": { + trace + 's': { + 'items': { + trace: { + }, + }, + "role": "object" + } + for trace in plotly_schema['traces'] + }, + "layout": { + } + } + + layout['template'] = template def perform_codegen(): @@ -52,6 +79,10 @@ def perform_codegen(): with open('plotly/package_data/plot-schema.json', 'r') as f: plotly_schema = json.load(f) + # Preprocess Schema + # ----------------- + preprocess_schema(plotly_schema) + # Build node lists # ---------------- # ### TraceNode ### diff --git a/codegen/datatypes.py b/codegen/datatypes.py index 4e88c424b1a..78ee800baa8 100644 --- a/codegen/datatypes.py +++ b/codegen/datatypes.py @@ -66,6 +66,18 @@ def build_datatype_py(node): # --------------- assert node.is_compound + # Handle template traces + # ---------------------- + # We want template trace/layout classes like + # plotly.graph_objs.layout.template.data.Scatter to map to the + # corresponding trace/layout class (e.g. plotly.graph_objs.Scatter). + # So rather than generate a class definition, we just import the + # corresponding trace/layout class + if node.parent_path_str == 'layout.template.data': + return f"from plotly.graph_objs import {node.name_datatype_class}" + elif node.path_str == 'layout.template.layout': + return "from plotly.graph_objs import Layout" + # Extract node properties # ----------------------- undercase = node.name_undercase @@ -244,7 +256,17 @@ def __init__(self""") # ----------------------------------""") for subtype_node in subtype_nodes: name_prop = subtype_node.name_property - buffer.write(f""" + if name_prop == 'template': + # Special handling for layout.template to avoid infinite + # recursion. Only initialize layout.template object if non-None + # value specified + buffer.write(f""" + _v = arg.pop('{name_prop}', None) + _v = {name_prop} if {name_prop} is not None else _v + if _v is not None: + self['{name_prop}'] = _v""") + else: + buffer.write(f""" _v = arg.pop('{name_prop}', None) self['{name_prop}'] = {name_prop} \ if {name_prop} is not None else _v""") diff --git a/codegen/utils.py b/codegen/utils.py index a2fa7f701cb..0c195ae7581 100644 --- a/codegen/utils.py +++ b/codegen/utils.py @@ -257,9 +257,14 @@ def __init__(self, plotly_schema, node_path=(), parent=None): # Note the node_data is a property that must be computed by the # subclass based on plotly_schema and node_path if isinstance(self.node_data, dict_like): + childs_parent = ( + parent + if self.node_path and self.node_path[-1] == 'items' + else self) + self._children = [self.__class__(self.plotly_schema, node_path=self.node_path + (c,), - parent=self) + parent=childs_parent) for c in self.node_data if c and c[0] != '_'] # Sort by plotly name @@ -387,7 +392,15 @@ def name_property(self): ------- str """ - return self.plotly_name + ('s' if self.is_array_element else '') + + return self.plotly_name + ( + 's' if self.is_array_element and + # Don't add 's' to layout.template.data.scatter etc. + not (self.parent and + self.parent.parent and + self.parent.parent.parent and + self.parent.parent.parent.name_property == 'template') + else '') @property def name_validator_class(self) -> str: @@ -600,8 +613,8 @@ def is_array_element(self): ------- bool """ - if self.parent and self.parent.parent: - return self.parent.parent.is_array + if self.parent: + return self.parent.is_array else: return False diff --git a/plotly/graph_objs/_figure.py b/plotly/graph_objs/_figure.py index 6d3873d7546..69517c0af7b 100644 --- a/plotly/graph_objs/_figure.py +++ b/plotly/graph_objs/_figure.py @@ -277,29 +277,8 @@ def __init__( hovered on but will not generate spikelines, such as scatter fills. template - Default attributes to be applied to the plot. - Templates can be created from existing plots - using `Plotly.makeTemplate`, or created - manually. They should be objects with format: - `{layout: layoutTemplate, data: {[type]: - [traceTemplate, ...]}, ...}` `layoutTemplate` - and `traceTemplate` are objects matching the - attribute structure of `layout` and a data - trace. Trace templates are applied cyclically - to traces of each type. Container arrays (eg - `annotations`) have special handling: An object - ending in `defaults` (eg `annotationdefaults`) - is applied to each array item. But if an item - has a `templateitemname` key we look in the - template array for an item with matching `name` - and apply that instead. If no matching `name` - is found we mark the item invisible. Any named - template item not referenced is appended to the - end of the array, so you can use this for a - watermark annotation or a logo image, for - example. To omit one of these items on the - plot, make an item with matching - `templateitemname` and `visible: false`. + plotly.graph_objs.layout.Template instance or + dict with compatible properties ternary plotly.graph_objs.layout.Ternary instance or dict with compatible properties diff --git a/plotly/graph_objs/_figurewidget.py b/plotly/graph_objs/_figurewidget.py index 09b21f6dbe0..ceddb0eadc2 100644 --- a/plotly/graph_objs/_figurewidget.py +++ b/plotly/graph_objs/_figurewidget.py @@ -277,29 +277,8 @@ def __init__( hovered on but will not generate spikelines, such as scatter fills. template - Default attributes to be applied to the plot. - Templates can be created from existing plots - using `Plotly.makeTemplate`, or created - manually. They should be objects with format: - `{layout: layoutTemplate, data: {[type]: - [traceTemplate, ...]}, ...}` `layoutTemplate` - and `traceTemplate` are objects matching the - attribute structure of `layout` and a data - trace. Trace templates are applied cyclically - to traces of each type. Container arrays (eg - `annotations`) have special handling: An object - ending in `defaults` (eg `annotationdefaults`) - is applied to each array item. But if an item - has a `templateitemname` key we look in the - template array for an item with matching `name` - and apply that instead. If no matching `name` - is found we mark the item invisible. Any named - template item not referenced is appended to the - end of the array, so you can use this for a - watermark annotation or a logo image, for - example. To omit one of these items on the - plot, make an item with matching - `templateitemname` and `visible: false`. + plotly.graph_objs.layout.Template instance or + dict with compatible properties ternary plotly.graph_objs.layout.Ternary instance or dict with compatible properties diff --git a/plotly/graph_objs/_layout.py b/plotly/graph_objs/_layout.py index fab9890737d..7bc3bd2dd3b 100644 --- a/plotly/graph_objs/_layout.py +++ b/plotly/graph_objs/_layout.py @@ -2140,30 +2140,24 @@ def spikedistance(self, val): @property def template(self): """ - Default attributes to be applied to the plot. Templates can be - created from existing plots using `Plotly.makeTemplate`, or - created manually. They should be objects with format: `{layout: - layoutTemplate, data: {[type]: [traceTemplate, ...]}, ...}` - `layoutTemplate` and `traceTemplate` are objects matching the - attribute structure of `layout` and a data trace. Trace - templates are applied cyclically to traces of each type. - Container arrays (eg `annotations`) have special handling: An - object ending in `defaults` (eg `annotationdefaults`) is - applied to each array item. But if an item has a - `templateitemname` key we look in the template array for an - item with matching `name` and apply that instead. If no - matching `name` is found we mark the item invisible. Any named - template item not referenced is appended to the end of the - array, so you can use this for a watermark annotation or a logo - image, for example. To omit one of these items on the plot, - make an item with matching `templateitemname` and `visible: - false`. + The 'template' property is an instance of Template + that may be specified as: + - An instance of plotly.graph_objs.layout.Template + - A dict of string/value properties that will be passed + to the Template constructor - The 'template' property accepts values of any type + Supported dict properties: + + data + plotly.graph_objs.layout.template.Data instance + or dict with compatible properties + layout + plotly.graph_objs.layout.template.Layout + instance or dict with compatible properties Returns ------- - Any + plotly.graph_objs.layout.Template """ return self['template'] @@ -3446,26 +3440,8 @@ def _prop_descriptions(self): objects can be hovered on but will not generate spikelines, such as scatter fills. template - Default attributes to be applied to the plot. Templates - can be created from existing plots using - `Plotly.makeTemplate`, or created manually. They should - be objects with format: `{layout: layoutTemplate, data: - {[type]: [traceTemplate, ...]}, ...}` `layoutTemplate` - and `traceTemplate` are objects matching the attribute - structure of `layout` and a data trace. Trace - templates are applied cyclically to traces of each - type. Container arrays (eg `annotations`) have special - handling: An object ending in `defaults` (eg - `annotationdefaults`) is applied to each array item. - But if an item has a `templateitemname` key we look in - the template array for an item with matching `name` and - apply that instead. If no matching `name` is found we - mark the item invisible. Any named template item not - referenced is appended to the end of the array, so you - can use this for a watermark annotation or a logo - image, for example. To omit one of these items on the - plot, make an item with matching `templateitemname` and - `visible: false`. + plotly.graph_objs.layout.Template instance or dict with + compatible properties ternary plotly.graph_objs.layout.Ternary instance or dict with compatible properties @@ -3770,26 +3746,8 @@ def __init__( objects can be hovered on but will not generate spikelines, such as scatter fills. template - Default attributes to be applied to the plot. Templates - can be created from existing plots using - `Plotly.makeTemplate`, or created manually. They should - be objects with format: `{layout: layoutTemplate, data: - {[type]: [traceTemplate, ...]}, ...}` `layoutTemplate` - and `traceTemplate` are objects matching the attribute - structure of `layout` and a data trace. Trace - templates are applied cyclically to traces of each - type. Container arrays (eg `annotations`) have special - handling: An object ending in `defaults` (eg - `annotationdefaults`) is applied to each array item. - But if an item has a `templateitemname` key we look in - the template array for an item with matching `name` and - apply that instead. If no matching `name` is found we - mark the item invisible. Any named template item not - referenced is appended to the end of the array, so you - can use this for a watermark annotation or a logo - image, for example. To omit one of these items on the - plot, make an item with matching `templateitemname` and - `visible: false`. + plotly.graph_objs.layout.Template instance or dict with + compatible properties ternary plotly.graph_objs.layout.Ternary instance or dict with compatible properties @@ -4010,7 +3968,9 @@ def __init__( self['spikedistance' ] = spikedistance if spikedistance is not None else _v _v = arg.pop('template', None) - self['template'] = template if template is not None else _v + _v = template if template is not None else _v + if _v is not None: + self['template'] = _v _v = arg.pop('ternary', None) self['ternary'] = ternary if ternary is not None else _v _v = arg.pop('title', None) diff --git a/plotly/graph_objs/layout/__init__.py b/plotly/graph_objs/layout/__init__.py index e0d9a7a098e..48751d14925 100644 --- a/plotly/graph_objs/layout/__init__.py +++ b/plotly/graph_objs/layout/__init__.py @@ -7,6 +7,8 @@ from ._titlefont import Titlefont from ._ternary import Ternary from plotly.graph_objs.layout import ternary +from ._template import Template +from plotly.graph_objs.layout import template from ._slider import Slider from plotly.graph_objs.layout import slider from ._shape import Shape diff --git a/plotly/graph_objs/layout/_template.py b/plotly/graph_objs/layout/_template.py new file mode 100644 index 00000000000..fdaa74db5d6 --- /dev/null +++ b/plotly/graph_objs/layout/_template.py @@ -0,0 +1,249 @@ +from plotly.basedatatypes import BaseLayoutHierarchyType +import copy + + +class Template(BaseLayoutHierarchyType): + + # data + # ---- + @property + def data(self): + """ + The 'data' property is an instance of Data + that may be specified as: + - An instance of plotly.graph_objs.layout.template.Data + - A dict of string/value properties that will be passed + to the Data constructor + + Supported dict properties: + + area + plotly.graph_objs.layout.template.data.Area + instance or dict with compatible properties + barpolar + plotly.graph_objs.layout.template.data.Barpolar + instance or dict with compatible properties + bar + plotly.graph_objs.layout.template.data.Bar + instance or dict with compatible properties + box + plotly.graph_objs.layout.template.data.Box + instance or dict with compatible properties + candlestick + plotly.graph_objs.layout.template.data.Candlest + ick instance or dict with compatible properties + carpet + plotly.graph_objs.layout.template.data.Carpet + instance or dict with compatible properties + choropleth + plotly.graph_objs.layout.template.data.Chorople + th instance or dict with compatible properties + cone + plotly.graph_objs.layout.template.data.Cone + instance or dict with compatible properties + contourcarpet + plotly.graph_objs.layout.template.data.Contourc + arpet instance or dict with compatible + properties + contour + plotly.graph_objs.layout.template.data.Contour + instance or dict with compatible properties + heatmapgl + plotly.graph_objs.layout.template.data.Heatmapg + l instance or dict with compatible properties + heatmap + plotly.graph_objs.layout.template.data.Heatmap + instance or dict with compatible properties + histogram2dcontour + plotly.graph_objs.layout.template.data.Histogra + m2dContour instance or dict with compatible + properties + histogram2d + plotly.graph_objs.layout.template.data.Histogra + m2d instance or dict with compatible properties + histogram + plotly.graph_objs.layout.template.data.Histogra + m instance or dict with compatible properties + mesh3d + plotly.graph_objs.layout.template.data.Mesh3d + instance or dict with compatible properties + ohlc + plotly.graph_objs.layout.template.data.Ohlc + instance or dict with compatible properties + parcoords + plotly.graph_objs.layout.template.data.Parcoord + s instance or dict with compatible properties + pie + plotly.graph_objs.layout.template.data.Pie + instance or dict with compatible properties + pointcloud + plotly.graph_objs.layout.template.data.Pointclo + ud instance or dict with compatible properties + sankey + plotly.graph_objs.layout.template.data.Sankey + instance or dict with compatible properties + scatter3d + plotly.graph_objs.layout.template.data.Scatter3 + d instance or dict with compatible properties + scattercarpet + plotly.graph_objs.layout.template.data.Scatterc + arpet instance or dict with compatible + properties + scattergeo + plotly.graph_objs.layout.template.data.Scatterg + eo instance or dict with compatible properties + scattergl + plotly.graph_objs.layout.template.data.Scatterg + l instance or dict with compatible properties + scattermapbox + plotly.graph_objs.layout.template.data.Scatterm + apbox instance or dict with compatible + properties + scatterpolargl + plotly.graph_objs.layout.template.data.Scatterp + olargl instance or dict with compatible + properties + scatterpolar + plotly.graph_objs.layout.template.data.Scatterp + olar instance or dict with compatible + properties + scatter + plotly.graph_objs.layout.template.data.Scatter + instance or dict with compatible properties + scatterternary + plotly.graph_objs.layout.template.data.Scattert + ernary instance or dict with compatible + properties + splom + plotly.graph_objs.layout.template.data.Splom + instance or dict with compatible properties + streamtube + plotly.graph_objs.layout.template.data.Streamtu + be instance or dict with compatible properties + surface + plotly.graph_objs.layout.template.data.Surface + instance or dict with compatible properties + table + plotly.graph_objs.layout.template.data.Table + instance or dict with compatible properties + violin + plotly.graph_objs.layout.template.data.Violin + instance or dict with compatible properties + + Returns + ------- + plotly.graph_objs.layout.template.Data + """ + return self['data'] + + @data.setter + def data(self, val): + self['data'] = val + + # layout + # ------ + @property + def layout(self): + """ + The 'layout' property is an instance of Layout + that may be specified as: + - An instance of plotly.graph_objs.layout.template.Layout + - A dict of string/value properties that will be passed + to the Layout constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.template.Layout + """ + return self['layout'] + + @layout.setter + def layout(self, val): + self['layout'] = val + + # property parent name + # -------------------- + @property + def _parent_path_str(self): + return 'layout' + + # Self properties description + # --------------------------- + @property + def _prop_descriptions(self): + return """\ + data + plotly.graph_objs.layout.template.Data instance or dict + with compatible properties + layout + plotly.graph_objs.layout.template.Layout instance or + dict with compatible properties + """ + + def __init__(self, arg=None, data=None, layout=None, **kwargs): + """ + Construct a new Template object + + Parameters + ---------- + arg + dict of properties compatible with this constructor or + an instance of plotly.graph_objs.layout.Template + data + plotly.graph_objs.layout.template.Data instance or dict + with compatible properties + layout + plotly.graph_objs.layout.template.Layout instance or + dict with compatible properties + + Returns + ------- + Template + """ + super(Template, self).__init__('template') + + # Validate arg + # ------------ + if arg is None: + arg = {} + elif isinstance(arg, self.__class__): + arg = arg.to_plotly_json() + elif isinstance(arg, dict): + arg = copy.copy(arg) + else: + raise ValueError( + """\ +The first argument to the plotly.graph_objs.layout.Template +constructor must be a dict or +an instance of plotly.graph_objs.layout.Template""" + ) + + # Handle skip_invalid + # ------------------- + self._skip_invalid = kwargs.pop('skip_invalid', False) + + # Import validators + # ----------------- + from plotly.validators.layout import (template as v_template) + + # Initialize validators + # --------------------- + self._validators['data'] = v_template.DataValidator() + self._validators['layout'] = v_template.LayoutValidator() + + # Populate data dict with properties + # ---------------------------------- + _v = arg.pop('data', None) + self['data'] = data if data is not None else _v + _v = arg.pop('layout', None) + self['layout'] = layout if layout is not None else _v + + # Process unknown kwargs + # ---------------------- + self._process_kwargs(**dict(arg, **kwargs)) + + # Reset skip_invalid + # ------------------ + self._skip_invalid = False diff --git a/plotly/graph_objs/layout/template/__init__.py b/plotly/graph_objs/layout/template/__init__.py new file mode 100644 index 00000000000..48e419ded9b --- /dev/null +++ b/plotly/graph_objs/layout/template/__init__.py @@ -0,0 +1,3 @@ +from ._layout import Layout +from ._data import Data +from plotly.graph_objs.layout.template import data diff --git a/plotly/graph_objs/layout/template/_data.py b/plotly/graph_objs/layout/template/_data.py new file mode 100644 index 00000000000..4c41a1cda21 --- /dev/null +++ b/plotly/graph_objs/layout/template/_data.py @@ -0,0 +1,1238 @@ +from plotly.basedatatypes import BaseLayoutHierarchyType +import copy + + +class Data(BaseLayoutHierarchyType): + + # area + # ---- + @property + def area(self): + """ + The 'area' property is a tuple of instances of + Area that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Area + - A list or tuple of dicts of string/value properties that + will be passed to the Area constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Area] + """ + return self['area'] + + @area.setter + def area(self, val): + self['area'] = val + + # barpolar + # -------- + @property + def barpolar(self): + """ + The 'barpolar' property is a tuple of instances of + Barpolar that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Barpolar + - A list or tuple of dicts of string/value properties that + will be passed to the Barpolar constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Barpolar] + """ + return self['barpolar'] + + @barpolar.setter + def barpolar(self, val): + self['barpolar'] = val + + # bar + # --- + @property + def bar(self): + """ + The 'bar' property is a tuple of instances of + Bar that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Bar + - A list or tuple of dicts of string/value properties that + will be passed to the Bar constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Bar] + """ + return self['bar'] + + @bar.setter + def bar(self, val): + self['bar'] = val + + # box + # --- + @property + def box(self): + """ + The 'box' property is a tuple of instances of + Box that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Box + - A list or tuple of dicts of string/value properties that + will be passed to the Box constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Box] + """ + return self['box'] + + @box.setter + def box(self, val): + self['box'] = val + + # candlestick + # ----------- + @property + def candlestick(self): + """ + The 'candlestick' property is a tuple of instances of + Candlestick that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Candlestick + - A list or tuple of dicts of string/value properties that + will be passed to the Candlestick constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Candlestick] + """ + return self['candlestick'] + + @candlestick.setter + def candlestick(self, val): + self['candlestick'] = val + + # carpet + # ------ + @property + def carpet(self): + """ + The 'carpet' property is a tuple of instances of + Carpet that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Carpet + - A list or tuple of dicts of string/value properties that + will be passed to the Carpet constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Carpet] + """ + return self['carpet'] + + @carpet.setter + def carpet(self, val): + self['carpet'] = val + + # choropleth + # ---------- + @property + def choropleth(self): + """ + The 'choropleth' property is a tuple of instances of + Choropleth that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Choropleth + - A list or tuple of dicts of string/value properties that + will be passed to the Choropleth constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Choropleth] + """ + return self['choropleth'] + + @choropleth.setter + def choropleth(self, val): + self['choropleth'] = val + + # cone + # ---- + @property + def cone(self): + """ + The 'cone' property is a tuple of instances of + Cone that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Cone + - A list or tuple of dicts of string/value properties that + will be passed to the Cone constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Cone] + """ + return self['cone'] + + @cone.setter + def cone(self, val): + self['cone'] = val + + # contourcarpet + # ------------- + @property + def contourcarpet(self): + """ + The 'contourcarpet' property is a tuple of instances of + Contourcarpet that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Contourcarpet + - A list or tuple of dicts of string/value properties that + will be passed to the Contourcarpet constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Contourcarpet] + """ + return self['contourcarpet'] + + @contourcarpet.setter + def contourcarpet(self, val): + self['contourcarpet'] = val + + # contour + # ------- + @property + def contour(self): + """ + The 'contour' property is a tuple of instances of + Contour that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Contour + - A list or tuple of dicts of string/value properties that + will be passed to the Contour constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Contour] + """ + return self['contour'] + + @contour.setter + def contour(self, val): + self['contour'] = val + + # heatmapgl + # --------- + @property + def heatmapgl(self): + """ + The 'heatmapgl' property is a tuple of instances of + Heatmapgl that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Heatmapgl + - A list or tuple of dicts of string/value properties that + will be passed to the Heatmapgl constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Heatmapgl] + """ + return self['heatmapgl'] + + @heatmapgl.setter + def heatmapgl(self, val): + self['heatmapgl'] = val + + # heatmap + # ------- + @property + def heatmap(self): + """ + The 'heatmap' property is a tuple of instances of + Heatmap that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Heatmap + - A list or tuple of dicts of string/value properties that + will be passed to the Heatmap constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Heatmap] + """ + return self['heatmap'] + + @heatmap.setter + def heatmap(self, val): + self['heatmap'] = val + + # histogram2dcontour + # ------------------ + @property + def histogram2dcontour(self): + """ + The 'histogram2dcontour' property is a tuple of instances of + Histogram2dContour that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Histogram2dContour + - A list or tuple of dicts of string/value properties that + will be passed to the Histogram2dContour constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Histogram2dContour] + """ + return self['histogram2dcontour'] + + @histogram2dcontour.setter + def histogram2dcontour(self, val): + self['histogram2dcontour'] = val + + # histogram2d + # ----------- + @property + def histogram2d(self): + """ + The 'histogram2d' property is a tuple of instances of + Histogram2d that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Histogram2d + - A list or tuple of dicts of string/value properties that + will be passed to the Histogram2d constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Histogram2d] + """ + return self['histogram2d'] + + @histogram2d.setter + def histogram2d(self, val): + self['histogram2d'] = val + + # histogram + # --------- + @property + def histogram(self): + """ + The 'histogram' property is a tuple of instances of + Histogram that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Histogram + - A list or tuple of dicts of string/value properties that + will be passed to the Histogram constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Histogram] + """ + return self['histogram'] + + @histogram.setter + def histogram(self, val): + self['histogram'] = val + + # mesh3d + # ------ + @property + def mesh3d(self): + """ + The 'mesh3d' property is a tuple of instances of + Mesh3d that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Mesh3d + - A list or tuple of dicts of string/value properties that + will be passed to the Mesh3d constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Mesh3d] + """ + return self['mesh3d'] + + @mesh3d.setter + def mesh3d(self, val): + self['mesh3d'] = val + + # ohlc + # ---- + @property + def ohlc(self): + """ + The 'ohlc' property is a tuple of instances of + Ohlc that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Ohlc + - A list or tuple of dicts of string/value properties that + will be passed to the Ohlc constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Ohlc] + """ + return self['ohlc'] + + @ohlc.setter + def ohlc(self, val): + self['ohlc'] = val + + # parcoords + # --------- + @property + def parcoords(self): + """ + The 'parcoords' property is a tuple of instances of + Parcoords that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Parcoords + - A list or tuple of dicts of string/value properties that + will be passed to the Parcoords constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Parcoords] + """ + return self['parcoords'] + + @parcoords.setter + def parcoords(self, val): + self['parcoords'] = val + + # pie + # --- + @property + def pie(self): + """ + The 'pie' property is a tuple of instances of + Pie that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Pie + - A list or tuple of dicts of string/value properties that + will be passed to the Pie constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Pie] + """ + return self['pie'] + + @pie.setter + def pie(self, val): + self['pie'] = val + + # pointcloud + # ---------- + @property + def pointcloud(self): + """ + The 'pointcloud' property is a tuple of instances of + Pointcloud that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Pointcloud + - A list or tuple of dicts of string/value properties that + will be passed to the Pointcloud constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Pointcloud] + """ + return self['pointcloud'] + + @pointcloud.setter + def pointcloud(self, val): + self['pointcloud'] = val + + # sankey + # ------ + @property + def sankey(self): + """ + The 'sankey' property is a tuple of instances of + Sankey that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Sankey + - A list or tuple of dicts of string/value properties that + will be passed to the Sankey constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Sankey] + """ + return self['sankey'] + + @sankey.setter + def sankey(self, val): + self['sankey'] = val + + # scatter3d + # --------- + @property + def scatter3d(self): + """ + The 'scatter3d' property is a tuple of instances of + Scatter3d that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Scatter3d + - A list or tuple of dicts of string/value properties that + will be passed to the Scatter3d constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Scatter3d] + """ + return self['scatter3d'] + + @scatter3d.setter + def scatter3d(self, val): + self['scatter3d'] = val + + # scattercarpet + # ------------- + @property + def scattercarpet(self): + """ + The 'scattercarpet' property is a tuple of instances of + Scattercarpet that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Scattercarpet + - A list or tuple of dicts of string/value properties that + will be passed to the Scattercarpet constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Scattercarpet] + """ + return self['scattercarpet'] + + @scattercarpet.setter + def scattercarpet(self, val): + self['scattercarpet'] = val + + # scattergeo + # ---------- + @property + def scattergeo(self): + """ + The 'scattergeo' property is a tuple of instances of + Scattergeo that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Scattergeo + - A list or tuple of dicts of string/value properties that + will be passed to the Scattergeo constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Scattergeo] + """ + return self['scattergeo'] + + @scattergeo.setter + def scattergeo(self, val): + self['scattergeo'] = val + + # scattergl + # --------- + @property + def scattergl(self): + """ + The 'scattergl' property is a tuple of instances of + Scattergl that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Scattergl + - A list or tuple of dicts of string/value properties that + will be passed to the Scattergl constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Scattergl] + """ + return self['scattergl'] + + @scattergl.setter + def scattergl(self, val): + self['scattergl'] = val + + # scattermapbox + # ------------- + @property + def scattermapbox(self): + """ + The 'scattermapbox' property is a tuple of instances of + Scattermapbox that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Scattermapbox + - A list or tuple of dicts of string/value properties that + will be passed to the Scattermapbox constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Scattermapbox] + """ + return self['scattermapbox'] + + @scattermapbox.setter + def scattermapbox(self, val): + self['scattermapbox'] = val + + # scatterpolargl + # -------------- + @property + def scatterpolargl(self): + """ + The 'scatterpolargl' property is a tuple of instances of + Scatterpolargl that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Scatterpolargl + - A list or tuple of dicts of string/value properties that + will be passed to the Scatterpolargl constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Scatterpolargl] + """ + return self['scatterpolargl'] + + @scatterpolargl.setter + def scatterpolargl(self, val): + self['scatterpolargl'] = val + + # scatterpolar + # ------------ + @property + def scatterpolar(self): + """ + The 'scatterpolar' property is a tuple of instances of + Scatterpolar that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Scatterpolar + - A list or tuple of dicts of string/value properties that + will be passed to the Scatterpolar constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Scatterpolar] + """ + return self['scatterpolar'] + + @scatterpolar.setter + def scatterpolar(self, val): + self['scatterpolar'] = val + + # scatter + # ------- + @property + def scatter(self): + """ + The 'scatter' property is a tuple of instances of + Scatter that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Scatter + - A list or tuple of dicts of string/value properties that + will be passed to the Scatter constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Scatter] + """ + return self['scatter'] + + @scatter.setter + def scatter(self, val): + self['scatter'] = val + + # scatterternary + # -------------- + @property + def scatterternary(self): + """ + The 'scatterternary' property is a tuple of instances of + Scatterternary that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Scatterternary + - A list or tuple of dicts of string/value properties that + will be passed to the Scatterternary constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Scatterternary] + """ + return self['scatterternary'] + + @scatterternary.setter + def scatterternary(self, val): + self['scatterternary'] = val + + # splom + # ----- + @property + def splom(self): + """ + The 'splom' property is a tuple of instances of + Splom that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Splom + - A list or tuple of dicts of string/value properties that + will be passed to the Splom constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Splom] + """ + return self['splom'] + + @splom.setter + def splom(self, val): + self['splom'] = val + + # streamtube + # ---------- + @property + def streamtube(self): + """ + The 'streamtube' property is a tuple of instances of + Streamtube that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Streamtube + - A list or tuple of dicts of string/value properties that + will be passed to the Streamtube constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Streamtube] + """ + return self['streamtube'] + + @streamtube.setter + def streamtube(self, val): + self['streamtube'] = val + + # surface + # ------- + @property + def surface(self): + """ + The 'surface' property is a tuple of instances of + Surface that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Surface + - A list or tuple of dicts of string/value properties that + will be passed to the Surface constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Surface] + """ + return self['surface'] + + @surface.setter + def surface(self, val): + self['surface'] = val + + # table + # ----- + @property + def table(self): + """ + The 'table' property is a tuple of instances of + Table that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Table + - A list or tuple of dicts of string/value properties that + will be passed to the Table constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Table] + """ + return self['table'] + + @table.setter + def table(self, val): + self['table'] = val + + # violin + # ------ + @property + def violin(self): + """ + The 'violin' property is a tuple of instances of + Violin that may be specified as: + - A list or tuple of instances of plotly.graph_objs.layout.template.data.Violin + - A list or tuple of dicts of string/value properties that + will be passed to the Violin constructor + + Supported dict properties: + + Returns + ------- + tuple[plotly.graph_objs.layout.template.data.Violin] + """ + return self['violin'] + + @violin.setter + def violin(self, val): + self['violin'] = val + + # property parent name + # -------------------- + @property + def _parent_path_str(self): + return 'layout.template' + + # Self properties description + # --------------------------- + @property + def _prop_descriptions(self): + return """\ + area + plotly.graph_objs.layout.template.data.Area instance or + dict with compatible properties + barpolar + plotly.graph_objs.layout.template.data.Barpolar + instance or dict with compatible properties + bar + plotly.graph_objs.layout.template.data.Bar instance or + dict with compatible properties + box + plotly.graph_objs.layout.template.data.Box instance or + dict with compatible properties + candlestick + plotly.graph_objs.layout.template.data.Candlestick + instance or dict with compatible properties + carpet + plotly.graph_objs.layout.template.data.Carpet instance + or dict with compatible properties + choropleth + plotly.graph_objs.layout.template.data.Choropleth + instance or dict with compatible properties + cone + plotly.graph_objs.layout.template.data.Cone instance or + dict with compatible properties + contourcarpet + plotly.graph_objs.layout.template.data.Contourcarpet + instance or dict with compatible properties + contour + plotly.graph_objs.layout.template.data.Contour instance + or dict with compatible properties + heatmapgl + plotly.graph_objs.layout.template.data.Heatmapgl + instance or dict with compatible properties + heatmap + plotly.graph_objs.layout.template.data.Heatmap instance + or dict with compatible properties + histogram2dcontour + plotly.graph_objs.layout.template.data.Histogram2dConto + ur instance or dict with compatible properties + histogram2d + plotly.graph_objs.layout.template.data.Histogram2d + instance or dict with compatible properties + histogram + plotly.graph_objs.layout.template.data.Histogram + instance or dict with compatible properties + mesh3d + plotly.graph_objs.layout.template.data.Mesh3d instance + or dict with compatible properties + ohlc + plotly.graph_objs.layout.template.data.Ohlc instance or + dict with compatible properties + parcoords + plotly.graph_objs.layout.template.data.Parcoords + instance or dict with compatible properties + pie + plotly.graph_objs.layout.template.data.Pie instance or + dict with compatible properties + pointcloud + plotly.graph_objs.layout.template.data.Pointcloud + instance or dict with compatible properties + sankey + plotly.graph_objs.layout.template.data.Sankey instance + or dict with compatible properties + scatter3d + plotly.graph_objs.layout.template.data.Scatter3d + instance or dict with compatible properties + scattercarpet + plotly.graph_objs.layout.template.data.Scattercarpet + instance or dict with compatible properties + scattergeo + plotly.graph_objs.layout.template.data.Scattergeo + instance or dict with compatible properties + scattergl + plotly.graph_objs.layout.template.data.Scattergl + instance or dict with compatible properties + scattermapbox + plotly.graph_objs.layout.template.data.Scattermapbox + instance or dict with compatible properties + scatterpolargl + plotly.graph_objs.layout.template.data.Scatterpolargl + instance or dict with compatible properties + scatterpolar + plotly.graph_objs.layout.template.data.Scatterpolar + instance or dict with compatible properties + scatter + plotly.graph_objs.layout.template.data.Scatter instance + or dict with compatible properties + scatterternary + plotly.graph_objs.layout.template.data.Scatterternary + instance or dict with compatible properties + splom + plotly.graph_objs.layout.template.data.Splom instance + or dict with compatible properties + streamtube + plotly.graph_objs.layout.template.data.Streamtube + instance or dict with compatible properties + surface + plotly.graph_objs.layout.template.data.Surface instance + or dict with compatible properties + table + plotly.graph_objs.layout.template.data.Table instance + or dict with compatible properties + violin + plotly.graph_objs.layout.template.data.Violin instance + or dict with compatible properties + """ + + def __init__( + self, + arg=None, + area=None, + barpolar=None, + bar=None, + box=None, + candlestick=None, + carpet=None, + choropleth=None, + cone=None, + contourcarpet=None, + contour=None, + heatmapgl=None, + heatmap=None, + histogram2dcontour=None, + histogram2d=None, + histogram=None, + mesh3d=None, + ohlc=None, + parcoords=None, + pie=None, + pointcloud=None, + sankey=None, + scatter3d=None, + scattercarpet=None, + scattergeo=None, + scattergl=None, + scattermapbox=None, + scatterpolargl=None, + scatterpolar=None, + scatter=None, + scatterternary=None, + splom=None, + streamtube=None, + surface=None, + table=None, + violin=None, + **kwargs + ): + """ + Construct a new Data object + + Parameters + ---------- + arg + dict of properties compatible with this constructor or + an instance of plotly.graph_objs.layout.template.Data + area + plotly.graph_objs.layout.template.data.Area instance or + dict with compatible properties + barpolar + plotly.graph_objs.layout.template.data.Barpolar + instance or dict with compatible properties + bar + plotly.graph_objs.layout.template.data.Bar instance or + dict with compatible properties + box + plotly.graph_objs.layout.template.data.Box instance or + dict with compatible properties + candlestick + plotly.graph_objs.layout.template.data.Candlestick + instance or dict with compatible properties + carpet + plotly.graph_objs.layout.template.data.Carpet instance + or dict with compatible properties + choropleth + plotly.graph_objs.layout.template.data.Choropleth + instance or dict with compatible properties + cone + plotly.graph_objs.layout.template.data.Cone instance or + dict with compatible properties + contourcarpet + plotly.graph_objs.layout.template.data.Contourcarpet + instance or dict with compatible properties + contour + plotly.graph_objs.layout.template.data.Contour instance + or dict with compatible properties + heatmapgl + plotly.graph_objs.layout.template.data.Heatmapgl + instance or dict with compatible properties + heatmap + plotly.graph_objs.layout.template.data.Heatmap instance + or dict with compatible properties + histogram2dcontour + plotly.graph_objs.layout.template.data.Histogram2dConto + ur instance or dict with compatible properties + histogram2d + plotly.graph_objs.layout.template.data.Histogram2d + instance or dict with compatible properties + histogram + plotly.graph_objs.layout.template.data.Histogram + instance or dict with compatible properties + mesh3d + plotly.graph_objs.layout.template.data.Mesh3d instance + or dict with compatible properties + ohlc + plotly.graph_objs.layout.template.data.Ohlc instance or + dict with compatible properties + parcoords + plotly.graph_objs.layout.template.data.Parcoords + instance or dict with compatible properties + pie + plotly.graph_objs.layout.template.data.Pie instance or + dict with compatible properties + pointcloud + plotly.graph_objs.layout.template.data.Pointcloud + instance or dict with compatible properties + sankey + plotly.graph_objs.layout.template.data.Sankey instance + or dict with compatible properties + scatter3d + plotly.graph_objs.layout.template.data.Scatter3d + instance or dict with compatible properties + scattercarpet + plotly.graph_objs.layout.template.data.Scattercarpet + instance or dict with compatible properties + scattergeo + plotly.graph_objs.layout.template.data.Scattergeo + instance or dict with compatible properties + scattergl + plotly.graph_objs.layout.template.data.Scattergl + instance or dict with compatible properties + scattermapbox + plotly.graph_objs.layout.template.data.Scattermapbox + instance or dict with compatible properties + scatterpolargl + plotly.graph_objs.layout.template.data.Scatterpolargl + instance or dict with compatible properties + scatterpolar + plotly.graph_objs.layout.template.data.Scatterpolar + instance or dict with compatible properties + scatter + plotly.graph_objs.layout.template.data.Scatter instance + or dict with compatible properties + scatterternary + plotly.graph_objs.layout.template.data.Scatterternary + instance or dict with compatible properties + splom + plotly.graph_objs.layout.template.data.Splom instance + or dict with compatible properties + streamtube + plotly.graph_objs.layout.template.data.Streamtube + instance or dict with compatible properties + surface + plotly.graph_objs.layout.template.data.Surface instance + or dict with compatible properties + table + plotly.graph_objs.layout.template.data.Table instance + or dict with compatible properties + violin + plotly.graph_objs.layout.template.data.Violin instance + or dict with compatible properties + + Returns + ------- + Data + """ + super(Data, self).__init__('data') + + # Validate arg + # ------------ + if arg is None: + arg = {} + elif isinstance(arg, self.__class__): + arg = arg.to_plotly_json() + elif isinstance(arg, dict): + arg = copy.copy(arg) + else: + raise ValueError( + """\ +The first argument to the plotly.graph_objs.layout.template.Data +constructor must be a dict or +an instance of plotly.graph_objs.layout.template.Data""" + ) + + # Handle skip_invalid + # ------------------- + self._skip_invalid = kwargs.pop('skip_invalid', False) + + # Import validators + # ----------------- + from plotly.validators.layout.template import (data as v_data) + + # Initialize validators + # --------------------- + self._validators['area'] = v_data.AreasValidator() + self._validators['barpolar'] = v_data.BarpolarsValidator() + self._validators['bar'] = v_data.BarsValidator() + self._validators['box'] = v_data.BoxsValidator() + self._validators['candlestick'] = v_data.CandlesticksValidator() + self._validators['carpet'] = v_data.CarpetsValidator() + self._validators['choropleth'] = v_data.ChoroplethsValidator() + self._validators['cone'] = v_data.ConesValidator() + self._validators['contourcarpet'] = v_data.ContourcarpetsValidator() + self._validators['contour'] = v_data.ContoursValidator() + self._validators['heatmapgl'] = v_data.HeatmapglsValidator() + self._validators['heatmap'] = v_data.HeatmapsValidator() + self._validators['histogram2dcontour' + ] = v_data.Histogram2dContoursValidator() + self._validators['histogram2d'] = v_data.Histogram2dsValidator() + self._validators['histogram'] = v_data.HistogramsValidator() + self._validators['mesh3d'] = v_data.Mesh3dsValidator() + self._validators['ohlc'] = v_data.OhlcsValidator() + self._validators['parcoords'] = v_data.ParcoordssValidator() + self._validators['pie'] = v_data.PiesValidator() + self._validators['pointcloud'] = v_data.PointcloudsValidator() + self._validators['sankey'] = v_data.SankeysValidator() + self._validators['scatter3d'] = v_data.Scatter3dsValidator() + self._validators['scattercarpet'] = v_data.ScattercarpetsValidator() + self._validators['scattergeo'] = v_data.ScattergeosValidator() + self._validators['scattergl'] = v_data.ScatterglsValidator() + self._validators['scattermapbox'] = v_data.ScattermapboxsValidator() + self._validators['scatterpolargl'] = v_data.ScatterpolarglsValidator() + self._validators['scatterpolar'] = v_data.ScatterpolarsValidator() + self._validators['scatter'] = v_data.ScattersValidator() + self._validators['scatterternary'] = v_data.ScatterternarysValidator() + self._validators['splom'] = v_data.SplomsValidator() + self._validators['streamtube'] = v_data.StreamtubesValidator() + self._validators['surface'] = v_data.SurfacesValidator() + self._validators['table'] = v_data.TablesValidator() + self._validators['violin'] = v_data.ViolinsValidator() + + # Populate data dict with properties + # ---------------------------------- + _v = arg.pop('area', None) + self['area'] = area if area is not None else _v + _v = arg.pop('barpolar', None) + self['barpolar'] = barpolar if barpolar is not None else _v + _v = arg.pop('bar', None) + self['bar'] = bar if bar is not None else _v + _v = arg.pop('box', None) + self['box'] = box if box is not None else _v + _v = arg.pop('candlestick', None) + self['candlestick'] = candlestick if candlestick is not None else _v + _v = arg.pop('carpet', None) + self['carpet'] = carpet if carpet is not None else _v + _v = arg.pop('choropleth', None) + self['choropleth'] = choropleth if choropleth is not None else _v + _v = arg.pop('cone', None) + self['cone'] = cone if cone is not None else _v + _v = arg.pop('contourcarpet', None) + self['contourcarpet' + ] = contourcarpet if contourcarpet is not None else _v + _v = arg.pop('contour', None) + self['contour'] = contour if contour is not None else _v + _v = arg.pop('heatmapgl', None) + self['heatmapgl'] = heatmapgl if heatmapgl is not None else _v + _v = arg.pop('heatmap', None) + self['heatmap'] = heatmap if heatmap is not None else _v + _v = arg.pop('histogram2dcontour', None) + self['histogram2dcontour' + ] = histogram2dcontour if histogram2dcontour is not None else _v + _v = arg.pop('histogram2d', None) + self['histogram2d'] = histogram2d if histogram2d is not None else _v + _v = arg.pop('histogram', None) + self['histogram'] = histogram if histogram is not None else _v + _v = arg.pop('mesh3d', None) + self['mesh3d'] = mesh3d if mesh3d is not None else _v + _v = arg.pop('ohlc', None) + self['ohlc'] = ohlc if ohlc is not None else _v + _v = arg.pop('parcoords', None) + self['parcoords'] = parcoords if parcoords is not None else _v + _v = arg.pop('pie', None) + self['pie'] = pie if pie is not None else _v + _v = arg.pop('pointcloud', None) + self['pointcloud'] = pointcloud if pointcloud is not None else _v + _v = arg.pop('sankey', None) + self['sankey'] = sankey if sankey is not None else _v + _v = arg.pop('scatter3d', None) + self['scatter3d'] = scatter3d if scatter3d is not None else _v + _v = arg.pop('scattercarpet', None) + self['scattercarpet' + ] = scattercarpet if scattercarpet is not None else _v + _v = arg.pop('scattergeo', None) + self['scattergeo'] = scattergeo if scattergeo is not None else _v + _v = arg.pop('scattergl', None) + self['scattergl'] = scattergl if scattergl is not None else _v + _v = arg.pop('scattermapbox', None) + self['scattermapbox' + ] = scattermapbox if scattermapbox is not None else _v + _v = arg.pop('scatterpolargl', None) + self['scatterpolargl' + ] = scatterpolargl if scatterpolargl is not None else _v + _v = arg.pop('scatterpolar', None) + self['scatterpolar'] = scatterpolar if scatterpolar is not None else _v + _v = arg.pop('scatter', None) + self['scatter'] = scatter if scatter is not None else _v + _v = arg.pop('scatterternary', None) + self['scatterternary' + ] = scatterternary if scatterternary is not None else _v + _v = arg.pop('splom', None) + self['splom'] = splom if splom is not None else _v + _v = arg.pop('streamtube', None) + self['streamtube'] = streamtube if streamtube is not None else _v + _v = arg.pop('surface', None) + self['surface'] = surface if surface is not None else _v + _v = arg.pop('table', None) + self['table'] = table if table is not None else _v + _v = arg.pop('violin', None) + self['violin'] = violin if violin is not None else _v + + # Process unknown kwargs + # ---------------------- + self._process_kwargs(**dict(arg, **kwargs)) + + # Reset skip_invalid + # ------------------ + self._skip_invalid = False diff --git a/plotly/graph_objs/layout/template/_layout.py b/plotly/graph_objs/layout/template/_layout.py new file mode 100644 index 00000000000..058b60b807d --- /dev/null +++ b/plotly/graph_objs/layout/template/_layout.py @@ -0,0 +1 @@ +from plotly.graph_objs import Layout diff --git a/plotly/graph_objs/layout/template/data/__init__.py b/plotly/graph_objs/layout/template/data/__init__.py new file mode 100644 index 00000000000..88b4101a089 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/__init__.py @@ -0,0 +1,35 @@ +from ._violin import Violin +from ._table import Table +from ._surface import Surface +from ._streamtube import Streamtube +from ._splom import Splom +from ._scatterternary import Scatterternary +from ._scatter import Scatter +from ._scatterpolar import Scatterpolar +from ._scatterpolargl import Scatterpolargl +from ._scattermapbox import Scattermapbox +from ._scattergl import Scattergl +from ._scattergeo import Scattergeo +from ._scattercarpet import Scattercarpet +from ._scatter3d import Scatter3d +from ._sankey import Sankey +from ._pointcloud import Pointcloud +from ._pie import Pie +from ._parcoords import Parcoords +from ._ohlc import Ohlc +from ._mesh3d import Mesh3d +from ._histogram import Histogram +from ._histogram2d import Histogram2d +from ._histogram2dcontour import Histogram2dContour +from ._heatmap import Heatmap +from ._heatmapgl import Heatmapgl +from ._contour import Contour +from ._contourcarpet import Contourcarpet +from ._cone import Cone +from ._choropleth import Choropleth +from ._carpet import Carpet +from ._candlestick import Candlestick +from ._box import Box +from ._bar import Bar +from ._barpolar import Barpolar +from ._area import Area diff --git a/plotly/graph_objs/layout/template/data/_area.py b/plotly/graph_objs/layout/template/data/_area.py new file mode 100644 index 00000000000..ad21bdf3e8d --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_area.py @@ -0,0 +1 @@ +from plotly.graph_objs import Area diff --git a/plotly/graph_objs/layout/template/data/_bar.py b/plotly/graph_objs/layout/template/data/_bar.py new file mode 100644 index 00000000000..5a800e64085 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_bar.py @@ -0,0 +1 @@ +from plotly.graph_objs import Bar diff --git a/plotly/graph_objs/layout/template/data/_barpolar.py b/plotly/graph_objs/layout/template/data/_barpolar.py new file mode 100644 index 00000000000..18abed8bbb6 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_barpolar.py @@ -0,0 +1 @@ +from plotly.graph_objs import Barpolar diff --git a/plotly/graph_objs/layout/template/data/_box.py b/plotly/graph_objs/layout/template/data/_box.py new file mode 100644 index 00000000000..ffdd1d92139 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_box.py @@ -0,0 +1 @@ +from plotly.graph_objs import Box diff --git a/plotly/graph_objs/layout/template/data/_candlestick.py b/plotly/graph_objs/layout/template/data/_candlestick.py new file mode 100644 index 00000000000..5d11b448593 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_candlestick.py @@ -0,0 +1 @@ +from plotly.graph_objs import Candlestick diff --git a/plotly/graph_objs/layout/template/data/_carpet.py b/plotly/graph_objs/layout/template/data/_carpet.py new file mode 100644 index 00000000000..b923d73904d --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_carpet.py @@ -0,0 +1 @@ +from plotly.graph_objs import Carpet diff --git a/plotly/graph_objs/layout/template/data/_choropleth.py b/plotly/graph_objs/layout/template/data/_choropleth.py new file mode 100644 index 00000000000..733e12709cc --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_choropleth.py @@ -0,0 +1 @@ +from plotly.graph_objs import Choropleth diff --git a/plotly/graph_objs/layout/template/data/_cone.py b/plotly/graph_objs/layout/template/data/_cone.py new file mode 100644 index 00000000000..7a284527a8d --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_cone.py @@ -0,0 +1 @@ +from plotly.graph_objs import Cone diff --git a/plotly/graph_objs/layout/template/data/_contour.py b/plotly/graph_objs/layout/template/data/_contour.py new file mode 100644 index 00000000000..e474909a4d2 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_contour.py @@ -0,0 +1 @@ +from plotly.graph_objs import Contour diff --git a/plotly/graph_objs/layout/template/data/_contourcarpet.py b/plotly/graph_objs/layout/template/data/_contourcarpet.py new file mode 100644 index 00000000000..6240faf5100 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_contourcarpet.py @@ -0,0 +1 @@ +from plotly.graph_objs import Contourcarpet diff --git a/plotly/graph_objs/layout/template/data/_heatmap.py b/plotly/graph_objs/layout/template/data/_heatmap.py new file mode 100644 index 00000000000..6098ee83e70 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_heatmap.py @@ -0,0 +1 @@ +from plotly.graph_objs import Heatmap diff --git a/plotly/graph_objs/layout/template/data/_heatmapgl.py b/plotly/graph_objs/layout/template/data/_heatmapgl.py new file mode 100644 index 00000000000..625f2797d24 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_heatmapgl.py @@ -0,0 +1 @@ +from plotly.graph_objs import Heatmapgl diff --git a/plotly/graph_objs/layout/template/data/_histogram.py b/plotly/graph_objs/layout/template/data/_histogram.py new file mode 100644 index 00000000000..7ba4c6df2fe --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_histogram.py @@ -0,0 +1 @@ +from plotly.graph_objs import Histogram diff --git a/plotly/graph_objs/layout/template/data/_histogram2d.py b/plotly/graph_objs/layout/template/data/_histogram2d.py new file mode 100644 index 00000000000..710f7f99296 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_histogram2d.py @@ -0,0 +1 @@ +from plotly.graph_objs import Histogram2d diff --git a/plotly/graph_objs/layout/template/data/_histogram2dcontour.py b/plotly/graph_objs/layout/template/data/_histogram2dcontour.py new file mode 100644 index 00000000000..94af41aa922 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_histogram2dcontour.py @@ -0,0 +1 @@ +from plotly.graph_objs import Histogram2dContour diff --git a/plotly/graph_objs/layout/template/data/_mesh3d.py b/plotly/graph_objs/layout/template/data/_mesh3d.py new file mode 100644 index 00000000000..2172a23bd4b --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_mesh3d.py @@ -0,0 +1 @@ +from plotly.graph_objs import Mesh3d diff --git a/plotly/graph_objs/layout/template/data/_ohlc.py b/plotly/graph_objs/layout/template/data/_ohlc.py new file mode 100644 index 00000000000..d3f857428cc --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_ohlc.py @@ -0,0 +1 @@ +from plotly.graph_objs import Ohlc diff --git a/plotly/graph_objs/layout/template/data/_parcoords.py b/plotly/graph_objs/layout/template/data/_parcoords.py new file mode 100644 index 00000000000..ccf5629c54f --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_parcoords.py @@ -0,0 +1 @@ +from plotly.graph_objs import Parcoords diff --git a/plotly/graph_objs/layout/template/data/_pie.py b/plotly/graph_objs/layout/template/data/_pie.py new file mode 100644 index 00000000000..0625fd28881 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_pie.py @@ -0,0 +1 @@ +from plotly.graph_objs import Pie diff --git a/plotly/graph_objs/layout/template/data/_pointcloud.py b/plotly/graph_objs/layout/template/data/_pointcloud.py new file mode 100644 index 00000000000..af62ef6313d --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_pointcloud.py @@ -0,0 +1 @@ +from plotly.graph_objs import Pointcloud diff --git a/plotly/graph_objs/layout/template/data/_sankey.py b/plotly/graph_objs/layout/template/data/_sankey.py new file mode 100644 index 00000000000..b572f657ce9 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_sankey.py @@ -0,0 +1 @@ +from plotly.graph_objs import Sankey diff --git a/plotly/graph_objs/layout/template/data/_scatter.py b/plotly/graph_objs/layout/template/data/_scatter.py new file mode 100644 index 00000000000..afcfab30afa --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_scatter.py @@ -0,0 +1 @@ +from plotly.graph_objs import Scatter diff --git a/plotly/graph_objs/layout/template/data/_scatter3d.py b/plotly/graph_objs/layout/template/data/_scatter3d.py new file mode 100644 index 00000000000..93146220e39 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_scatter3d.py @@ -0,0 +1 @@ +from plotly.graph_objs import Scatter3d diff --git a/plotly/graph_objs/layout/template/data/_scattercarpet.py b/plotly/graph_objs/layout/template/data/_scattercarpet.py new file mode 100644 index 00000000000..26d87ca7c1c --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_scattercarpet.py @@ -0,0 +1 @@ +from plotly.graph_objs import Scattercarpet diff --git a/plotly/graph_objs/layout/template/data/_scattergeo.py b/plotly/graph_objs/layout/template/data/_scattergeo.py new file mode 100644 index 00000000000..34308e1a081 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_scattergeo.py @@ -0,0 +1 @@ +from plotly.graph_objs import Scattergeo diff --git a/plotly/graph_objs/layout/template/data/_scattergl.py b/plotly/graph_objs/layout/template/data/_scattergl.py new file mode 100644 index 00000000000..30bd3712b80 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_scattergl.py @@ -0,0 +1 @@ +from plotly.graph_objs import Scattergl diff --git a/plotly/graph_objs/layout/template/data/_scattermapbox.py b/plotly/graph_objs/layout/template/data/_scattermapbox.py new file mode 100644 index 00000000000..6c3333aa945 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_scattermapbox.py @@ -0,0 +1 @@ +from plotly.graph_objs import Scattermapbox diff --git a/plotly/graph_objs/layout/template/data/_scatterpolar.py b/plotly/graph_objs/layout/template/data/_scatterpolar.py new file mode 100644 index 00000000000..e1417b23810 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_scatterpolar.py @@ -0,0 +1 @@ +from plotly.graph_objs import Scatterpolar diff --git a/plotly/graph_objs/layout/template/data/_scatterpolargl.py b/plotly/graph_objs/layout/template/data/_scatterpolargl.py new file mode 100644 index 00000000000..60b023a581b --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_scatterpolargl.py @@ -0,0 +1 @@ +from plotly.graph_objs import Scatterpolargl diff --git a/plotly/graph_objs/layout/template/data/_scatterternary.py b/plotly/graph_objs/layout/template/data/_scatterternary.py new file mode 100644 index 00000000000..2221eadd54d --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_scatterternary.py @@ -0,0 +1 @@ +from plotly.graph_objs import Scatterternary diff --git a/plotly/graph_objs/layout/template/data/_splom.py b/plotly/graph_objs/layout/template/data/_splom.py new file mode 100644 index 00000000000..0909cdfd9dd --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_splom.py @@ -0,0 +1 @@ +from plotly.graph_objs import Splom diff --git a/plotly/graph_objs/layout/template/data/_streamtube.py b/plotly/graph_objs/layout/template/data/_streamtube.py new file mode 100644 index 00000000000..8b23c3161cb --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_streamtube.py @@ -0,0 +1 @@ +from plotly.graph_objs import Streamtube diff --git a/plotly/graph_objs/layout/template/data/_surface.py b/plotly/graph_objs/layout/template/data/_surface.py new file mode 100644 index 00000000000..cfaa55d7385 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_surface.py @@ -0,0 +1 @@ +from plotly.graph_objs import Surface diff --git a/plotly/graph_objs/layout/template/data/_table.py b/plotly/graph_objs/layout/template/data/_table.py new file mode 100644 index 00000000000..2b6d4ad1e57 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_table.py @@ -0,0 +1 @@ +from plotly.graph_objs import Table diff --git a/plotly/graph_objs/layout/template/data/_violin.py b/plotly/graph_objs/layout/template/data/_violin.py new file mode 100644 index 00000000000..23221b66776 --- /dev/null +++ b/plotly/graph_objs/layout/template/data/_violin.py @@ -0,0 +1 @@ +from plotly.graph_objs import Violin diff --git a/plotly/validators/_layout.py b/plotly/validators/_layout.py index 4a5963b1153..fb6e53a1675 100644 --- a/plotly/validators/_layout.py +++ b/plotly/validators/_layout.py @@ -235,29 +235,8 @@ def __init__(self, plotly_name='layout', parent_name='', **kwargs): hovered on but will not generate spikelines, such as scatter fills. template - Default attributes to be applied to the plot. - Templates can be created from existing plots - using `Plotly.makeTemplate`, or created - manually. They should be objects with format: - `{layout: layoutTemplate, data: {[type]: - [traceTemplate, ...]}, ...}` `layoutTemplate` - and `traceTemplate` are objects matching the - attribute structure of `layout` and a data - trace. Trace templates are applied cyclically - to traces of each type. Container arrays (eg - `annotations`) have special handling: An object - ending in `defaults` (eg `annotationdefaults`) - is applied to each array item. But if an item - has a `templateitemname` key we look in the - template array for an item with matching `name` - and apply that instead. If no matching `name` - is found we mark the item invisible. Any named - template item not referenced is appended to the - end of the array, so you can use this for a - watermark annotation or a logo image, for - example. To omit one of these items on the - plot, make an item with matching - `templateitemname` and `visible: false`. + plotly.graph_objs.layout.Template instance or + dict with compatible properties ternary plotly.graph_objs.layout.Ternary instance or dict with compatible properties diff --git a/plotly/validators/layout/_template.py b/plotly/validators/layout/_template.py index 23df413ccc5..129713cf95e 100644 --- a/plotly/validators/layout/_template.py +++ b/plotly/validators/layout/_template.py @@ -1,13 +1,22 @@ import _plotly_utils.basevalidators -class TemplateValidator(_plotly_utils.basevalidators.AnyValidator): +class TemplateValidator(_plotly_utils.basevalidators.CompoundValidator): def __init__(self, plotly_name='template', parent_name='layout', **kwargs): super(TemplateValidator, self).__init__( plotly_name=plotly_name, parent_name=parent_name, - edit_type=kwargs.pop('edit_type', 'calc'), - role=kwargs.pop('role', 'info'), + data_class_str=kwargs.pop('data_class_str', 'Template'), + data_docs=kwargs.pop( + 'data_docs', """ + data + plotly.graph_objs.layout.template.Data instance + or dict with compatible properties + layout + plotly.graph_objs.layout.template.Layout + instance or dict with compatible properties +""" + ), **kwargs ) diff --git a/plotly/validators/layout/template/__init__.py b/plotly/validators/layout/template/__init__.py new file mode 100644 index 00000000000..720a1c7931c --- /dev/null +++ b/plotly/validators/layout/template/__init__.py @@ -0,0 +1,2 @@ +from ._layout import LayoutValidator +from ._data import DataValidator diff --git a/plotly/validators/layout/template/_data.py b/plotly/validators/layout/template/_data.py new file mode 100644 index 00000000000..3d4bc2589d7 --- /dev/null +++ b/plotly/validators/layout/template/_data.py @@ -0,0 +1,130 @@ +import _plotly_utils.basevalidators + + +class DataValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, plotly_name='data', parent_name='layout.template', **kwargs + ): + super(DataValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Data'), + data_docs=kwargs.pop( + 'data_docs', """ + area + plotly.graph_objs.layout.template.data.Area + instance or dict with compatible properties + barpolar + plotly.graph_objs.layout.template.data.Barpolar + instance or dict with compatible properties + bar + plotly.graph_objs.layout.template.data.Bar + instance or dict with compatible properties + box + plotly.graph_objs.layout.template.data.Box + instance or dict with compatible properties + candlestick + plotly.graph_objs.layout.template.data.Candlest + ick instance or dict with compatible properties + carpet + plotly.graph_objs.layout.template.data.Carpet + instance or dict with compatible properties + choropleth + plotly.graph_objs.layout.template.data.Chorople + th instance or dict with compatible properties + cone + plotly.graph_objs.layout.template.data.Cone + instance or dict with compatible properties + contourcarpet + plotly.graph_objs.layout.template.data.Contourc + arpet instance or dict with compatible + properties + contour + plotly.graph_objs.layout.template.data.Contour + instance or dict with compatible properties + heatmapgl + plotly.graph_objs.layout.template.data.Heatmapg + l instance or dict with compatible properties + heatmap + plotly.graph_objs.layout.template.data.Heatmap + instance or dict with compatible properties + histogram2dcontour + plotly.graph_objs.layout.template.data.Histogra + m2dContour instance or dict with compatible + properties + histogram2d + plotly.graph_objs.layout.template.data.Histogra + m2d instance or dict with compatible properties + histogram + plotly.graph_objs.layout.template.data.Histogra + m instance or dict with compatible properties + mesh3d + plotly.graph_objs.layout.template.data.Mesh3d + instance or dict with compatible properties + ohlc + plotly.graph_objs.layout.template.data.Ohlc + instance or dict with compatible properties + parcoords + plotly.graph_objs.layout.template.data.Parcoord + s instance or dict with compatible properties + pie + plotly.graph_objs.layout.template.data.Pie + instance or dict with compatible properties + pointcloud + plotly.graph_objs.layout.template.data.Pointclo + ud instance or dict with compatible properties + sankey + plotly.graph_objs.layout.template.data.Sankey + instance or dict with compatible properties + scatter3d + plotly.graph_objs.layout.template.data.Scatter3 + d instance or dict with compatible properties + scattercarpet + plotly.graph_objs.layout.template.data.Scatterc + arpet instance or dict with compatible + properties + scattergeo + plotly.graph_objs.layout.template.data.Scatterg + eo instance or dict with compatible properties + scattergl + plotly.graph_objs.layout.template.data.Scatterg + l instance or dict with compatible properties + scattermapbox + plotly.graph_objs.layout.template.data.Scatterm + apbox instance or dict with compatible + properties + scatterpolargl + plotly.graph_objs.layout.template.data.Scatterp + olargl instance or dict with compatible + properties + scatterpolar + plotly.graph_objs.layout.template.data.Scatterp + olar instance or dict with compatible + properties + scatter + plotly.graph_objs.layout.template.data.Scatter + instance or dict with compatible properties + scatterternary + plotly.graph_objs.layout.template.data.Scattert + ernary instance or dict with compatible + properties + splom + plotly.graph_objs.layout.template.data.Splom + instance or dict with compatible properties + streamtube + plotly.graph_objs.layout.template.data.Streamtu + be instance or dict with compatible properties + surface + plotly.graph_objs.layout.template.data.Surface + instance or dict with compatible properties + table + plotly.graph_objs.layout.template.data.Table + instance or dict with compatible properties + violin + plotly.graph_objs.layout.template.data.Violin + instance or dict with compatible properties +""" + ), + **kwargs + ) diff --git a/plotly/validators/layout/template/_layout.py b/plotly/validators/layout/template/_layout.py new file mode 100644 index 00000000000..324aaee33d5 --- /dev/null +++ b/plotly/validators/layout/template/_layout.py @@ -0,0 +1,16 @@ +import _plotly_utils.basevalidators + + +class LayoutValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, plotly_name='layout', parent_name='layout.template', **kwargs + ): + super(LayoutValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Layout'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/__init__.py b/plotly/validators/layout/template/data/__init__.py new file mode 100644 index 00000000000..892a666f035 --- /dev/null +++ b/plotly/validators/layout/template/data/__init__.py @@ -0,0 +1,35 @@ +from ._violin import ViolinsValidator +from ._table import TablesValidator +from ._surface import SurfacesValidator +from ._streamtube import StreamtubesValidator +from ._splom import SplomsValidator +from ._scatterternary import ScatterternarysValidator +from ._scatter import ScattersValidator +from ._scatterpolar import ScatterpolarsValidator +from ._scatterpolargl import ScatterpolarglsValidator +from ._scattermapbox import ScattermapboxsValidator +from ._scattergl import ScatterglsValidator +from ._scattergeo import ScattergeosValidator +from ._scattercarpet import ScattercarpetsValidator +from ._scatter3d import Scatter3dsValidator +from ._sankey import SankeysValidator +from ._pointcloud import PointcloudsValidator +from ._pie import PiesValidator +from ._parcoords import ParcoordssValidator +from ._ohlc import OhlcsValidator +from ._mesh3d import Mesh3dsValidator +from ._histogram import HistogramsValidator +from ._histogram2d import Histogram2dsValidator +from ._histogram2dcontour import Histogram2dContoursValidator +from ._heatmap import HeatmapsValidator +from ._heatmapgl import HeatmapglsValidator +from ._contour import ContoursValidator +from ._contourcarpet import ContourcarpetsValidator +from ._cone import ConesValidator +from ._choropleth import ChoroplethsValidator +from ._carpet import CarpetsValidator +from ._candlestick import CandlesticksValidator +from ._box import BoxsValidator +from ._bar import BarsValidator +from ._barpolar import BarpolarsValidator +from ._area import AreasValidator diff --git a/plotly/validators/layout/template/data/_area.py b/plotly/validators/layout/template/data/_area.py new file mode 100644 index 00000000000..3727d62c703 --- /dev/null +++ b/plotly/validators/layout/template/data/_area.py @@ -0,0 +1,16 @@ +import _plotly_utils.basevalidators + + +class AreasValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, plotly_name='area', parent_name='layout.template.data', **kwargs + ): + super(AreasValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Area'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_bar.py b/plotly/validators/layout/template/data/_bar.py new file mode 100644 index 00000000000..1478fdad61e --- /dev/null +++ b/plotly/validators/layout/template/data/_bar.py @@ -0,0 +1,16 @@ +import _plotly_utils.basevalidators + + +class BarsValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, plotly_name='bar', parent_name='layout.template.data', **kwargs + ): + super(BarsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Bar'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_barpolar.py b/plotly/validators/layout/template/data/_barpolar.py new file mode 100644 index 00000000000..a7e1fefab9e --- /dev/null +++ b/plotly/validators/layout/template/data/_barpolar.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class BarpolarsValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, + plotly_name='barpolar', + parent_name='layout.template.data', + **kwargs + ): + super(BarpolarsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Barpolar'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_box.py b/plotly/validators/layout/template/data/_box.py new file mode 100644 index 00000000000..f6b02732158 --- /dev/null +++ b/plotly/validators/layout/template/data/_box.py @@ -0,0 +1,16 @@ +import _plotly_utils.basevalidators + + +class BoxsValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, plotly_name='box', parent_name='layout.template.data', **kwargs + ): + super(BoxsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Box'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_candlestick.py b/plotly/validators/layout/template/data/_candlestick.py new file mode 100644 index 00000000000..c621904edb4 --- /dev/null +++ b/plotly/validators/layout/template/data/_candlestick.py @@ -0,0 +1,21 @@ +import _plotly_utils.basevalidators + + +class CandlesticksValidator( + _plotly_utils.basevalidators.CompoundArrayValidator +): + + def __init__( + self, + plotly_name='candlestick', + parent_name='layout.template.data', + **kwargs + ): + super(CandlesticksValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Candlestick'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_carpet.py b/plotly/validators/layout/template/data/_carpet.py new file mode 100644 index 00000000000..b8e8406d594 --- /dev/null +++ b/plotly/validators/layout/template/data/_carpet.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class CarpetsValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, + plotly_name='carpet', + parent_name='layout.template.data', + **kwargs + ): + super(CarpetsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Carpet'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_choropleth.py b/plotly/validators/layout/template/data/_choropleth.py new file mode 100644 index 00000000000..e86be98dc02 --- /dev/null +++ b/plotly/validators/layout/template/data/_choropleth.py @@ -0,0 +1,21 @@ +import _plotly_utils.basevalidators + + +class ChoroplethsValidator( + _plotly_utils.basevalidators.CompoundArrayValidator +): + + def __init__( + self, + plotly_name='choropleth', + parent_name='layout.template.data', + **kwargs + ): + super(ChoroplethsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Choropleth'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_cone.py b/plotly/validators/layout/template/data/_cone.py new file mode 100644 index 00000000000..9d4e1d042ad --- /dev/null +++ b/plotly/validators/layout/template/data/_cone.py @@ -0,0 +1,16 @@ +import _plotly_utils.basevalidators + + +class ConesValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, plotly_name='cone', parent_name='layout.template.data', **kwargs + ): + super(ConesValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Cone'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_contour.py b/plotly/validators/layout/template/data/_contour.py new file mode 100644 index 00000000000..a0744beb8db --- /dev/null +++ b/plotly/validators/layout/template/data/_contour.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class ContoursValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, + plotly_name='contour', + parent_name='layout.template.data', + **kwargs + ): + super(ContoursValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Contour'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_contourcarpet.py b/plotly/validators/layout/template/data/_contourcarpet.py new file mode 100644 index 00000000000..2311351de9a --- /dev/null +++ b/plotly/validators/layout/template/data/_contourcarpet.py @@ -0,0 +1,21 @@ +import _plotly_utils.basevalidators + + +class ContourcarpetsValidator( + _plotly_utils.basevalidators.CompoundArrayValidator +): + + def __init__( + self, + plotly_name='contourcarpet', + parent_name='layout.template.data', + **kwargs + ): + super(ContourcarpetsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Contourcarpet'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_heatmap.py b/plotly/validators/layout/template/data/_heatmap.py new file mode 100644 index 00000000000..33d42a10b8f --- /dev/null +++ b/plotly/validators/layout/template/data/_heatmap.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class HeatmapsValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, + plotly_name='heatmap', + parent_name='layout.template.data', + **kwargs + ): + super(HeatmapsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Heatmap'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_heatmapgl.py b/plotly/validators/layout/template/data/_heatmapgl.py new file mode 100644 index 00000000000..bedab12f860 --- /dev/null +++ b/plotly/validators/layout/template/data/_heatmapgl.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class HeatmapglsValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, + plotly_name='heatmapgl', + parent_name='layout.template.data', + **kwargs + ): + super(HeatmapglsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Heatmapgl'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_histogram.py b/plotly/validators/layout/template/data/_histogram.py new file mode 100644 index 00000000000..60561f47dcd --- /dev/null +++ b/plotly/validators/layout/template/data/_histogram.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class HistogramsValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, + plotly_name='histogram', + parent_name='layout.template.data', + **kwargs + ): + super(HistogramsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Histogram'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_histogram2d.py b/plotly/validators/layout/template/data/_histogram2d.py new file mode 100644 index 00000000000..f50ed4930ae --- /dev/null +++ b/plotly/validators/layout/template/data/_histogram2d.py @@ -0,0 +1,21 @@ +import _plotly_utils.basevalidators + + +class Histogram2dsValidator( + _plotly_utils.basevalidators.CompoundArrayValidator +): + + def __init__( + self, + plotly_name='histogram2d', + parent_name='layout.template.data', + **kwargs + ): + super(Histogram2dsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Histogram2d'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_histogram2dcontour.py b/plotly/validators/layout/template/data/_histogram2dcontour.py new file mode 100644 index 00000000000..8f74e42f14b --- /dev/null +++ b/plotly/validators/layout/template/data/_histogram2dcontour.py @@ -0,0 +1,21 @@ +import _plotly_utils.basevalidators + + +class Histogram2dContoursValidator( + _plotly_utils.basevalidators.CompoundArrayValidator +): + + def __init__( + self, + plotly_name='histogram2dcontour', + parent_name='layout.template.data', + **kwargs + ): + super(Histogram2dContoursValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Histogram2dContour'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_mesh3d.py b/plotly/validators/layout/template/data/_mesh3d.py new file mode 100644 index 00000000000..71757acf2c7 --- /dev/null +++ b/plotly/validators/layout/template/data/_mesh3d.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class Mesh3dsValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, + plotly_name='mesh3d', + parent_name='layout.template.data', + **kwargs + ): + super(Mesh3dsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Mesh3d'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_ohlc.py b/plotly/validators/layout/template/data/_ohlc.py new file mode 100644 index 00000000000..f63d92d8743 --- /dev/null +++ b/plotly/validators/layout/template/data/_ohlc.py @@ -0,0 +1,16 @@ +import _plotly_utils.basevalidators + + +class OhlcsValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, plotly_name='ohlc', parent_name='layout.template.data', **kwargs + ): + super(OhlcsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Ohlc'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_parcoords.py b/plotly/validators/layout/template/data/_parcoords.py new file mode 100644 index 00000000000..82fea9e4221 --- /dev/null +++ b/plotly/validators/layout/template/data/_parcoords.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class ParcoordssValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, + plotly_name='parcoords', + parent_name='layout.template.data', + **kwargs + ): + super(ParcoordssValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Parcoords'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_pie.py b/plotly/validators/layout/template/data/_pie.py new file mode 100644 index 00000000000..c5ba5fb4a66 --- /dev/null +++ b/plotly/validators/layout/template/data/_pie.py @@ -0,0 +1,16 @@ +import _plotly_utils.basevalidators + + +class PiesValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, plotly_name='pie', parent_name='layout.template.data', **kwargs + ): + super(PiesValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Pie'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_pointcloud.py b/plotly/validators/layout/template/data/_pointcloud.py new file mode 100644 index 00000000000..cb844fb28c0 --- /dev/null +++ b/plotly/validators/layout/template/data/_pointcloud.py @@ -0,0 +1,21 @@ +import _plotly_utils.basevalidators + + +class PointcloudsValidator( + _plotly_utils.basevalidators.CompoundArrayValidator +): + + def __init__( + self, + plotly_name='pointcloud', + parent_name='layout.template.data', + **kwargs + ): + super(PointcloudsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Pointcloud'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_sankey.py b/plotly/validators/layout/template/data/_sankey.py new file mode 100644 index 00000000000..8683e2bb3ea --- /dev/null +++ b/plotly/validators/layout/template/data/_sankey.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class SankeysValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, + plotly_name='sankey', + parent_name='layout.template.data', + **kwargs + ): + super(SankeysValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Sankey'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_scatter.py b/plotly/validators/layout/template/data/_scatter.py new file mode 100644 index 00000000000..338fd68ffc6 --- /dev/null +++ b/plotly/validators/layout/template/data/_scatter.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class ScattersValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, + plotly_name='scatter', + parent_name='layout.template.data', + **kwargs + ): + super(ScattersValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Scatter'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_scatter3d.py b/plotly/validators/layout/template/data/_scatter3d.py new file mode 100644 index 00000000000..2b3c170ec5e --- /dev/null +++ b/plotly/validators/layout/template/data/_scatter3d.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class Scatter3dsValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, + plotly_name='scatter3d', + parent_name='layout.template.data', + **kwargs + ): + super(Scatter3dsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Scatter3d'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_scattercarpet.py b/plotly/validators/layout/template/data/_scattercarpet.py new file mode 100644 index 00000000000..527101a8e8d --- /dev/null +++ b/plotly/validators/layout/template/data/_scattercarpet.py @@ -0,0 +1,21 @@ +import _plotly_utils.basevalidators + + +class ScattercarpetsValidator( + _plotly_utils.basevalidators.CompoundArrayValidator +): + + def __init__( + self, + plotly_name='scattercarpet', + parent_name='layout.template.data', + **kwargs + ): + super(ScattercarpetsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Scattercarpet'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_scattergeo.py b/plotly/validators/layout/template/data/_scattergeo.py new file mode 100644 index 00000000000..f385ba29066 --- /dev/null +++ b/plotly/validators/layout/template/data/_scattergeo.py @@ -0,0 +1,21 @@ +import _plotly_utils.basevalidators + + +class ScattergeosValidator( + _plotly_utils.basevalidators.CompoundArrayValidator +): + + def __init__( + self, + plotly_name='scattergeo', + parent_name='layout.template.data', + **kwargs + ): + super(ScattergeosValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Scattergeo'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_scattergl.py b/plotly/validators/layout/template/data/_scattergl.py new file mode 100644 index 00000000000..5bd24288917 --- /dev/null +++ b/plotly/validators/layout/template/data/_scattergl.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class ScatterglsValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, + plotly_name='scattergl', + parent_name='layout.template.data', + **kwargs + ): + super(ScatterglsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Scattergl'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_scattermapbox.py b/plotly/validators/layout/template/data/_scattermapbox.py new file mode 100644 index 00000000000..693177ae287 --- /dev/null +++ b/plotly/validators/layout/template/data/_scattermapbox.py @@ -0,0 +1,21 @@ +import _plotly_utils.basevalidators + + +class ScattermapboxsValidator( + _plotly_utils.basevalidators.CompoundArrayValidator +): + + def __init__( + self, + plotly_name='scattermapbox', + parent_name='layout.template.data', + **kwargs + ): + super(ScattermapboxsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Scattermapbox'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_scatterpolar.py b/plotly/validators/layout/template/data/_scatterpolar.py new file mode 100644 index 00000000000..97881bc95e5 --- /dev/null +++ b/plotly/validators/layout/template/data/_scatterpolar.py @@ -0,0 +1,21 @@ +import _plotly_utils.basevalidators + + +class ScatterpolarsValidator( + _plotly_utils.basevalidators.CompoundArrayValidator +): + + def __init__( + self, + plotly_name='scatterpolar', + parent_name='layout.template.data', + **kwargs + ): + super(ScatterpolarsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Scatterpolar'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_scatterpolargl.py b/plotly/validators/layout/template/data/_scatterpolargl.py new file mode 100644 index 00000000000..ceb4d8ddb29 --- /dev/null +++ b/plotly/validators/layout/template/data/_scatterpolargl.py @@ -0,0 +1,21 @@ +import _plotly_utils.basevalidators + + +class ScatterpolarglsValidator( + _plotly_utils.basevalidators.CompoundArrayValidator +): + + def __init__( + self, + plotly_name='scatterpolargl', + parent_name='layout.template.data', + **kwargs + ): + super(ScatterpolarglsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Scatterpolargl'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_scatterternary.py b/plotly/validators/layout/template/data/_scatterternary.py new file mode 100644 index 00000000000..0b69c9c23c7 --- /dev/null +++ b/plotly/validators/layout/template/data/_scatterternary.py @@ -0,0 +1,21 @@ +import _plotly_utils.basevalidators + + +class ScatterternarysValidator( + _plotly_utils.basevalidators.CompoundArrayValidator +): + + def __init__( + self, + plotly_name='scatterternary', + parent_name='layout.template.data', + **kwargs + ): + super(ScatterternarysValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Scatterternary'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_splom.py b/plotly/validators/layout/template/data/_splom.py new file mode 100644 index 00000000000..e8ed88229bc --- /dev/null +++ b/plotly/validators/layout/template/data/_splom.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class SplomsValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, + plotly_name='splom', + parent_name='layout.template.data', + **kwargs + ): + super(SplomsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Splom'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_streamtube.py b/plotly/validators/layout/template/data/_streamtube.py new file mode 100644 index 00000000000..2070888cc91 --- /dev/null +++ b/plotly/validators/layout/template/data/_streamtube.py @@ -0,0 +1,21 @@ +import _plotly_utils.basevalidators + + +class StreamtubesValidator( + _plotly_utils.basevalidators.CompoundArrayValidator +): + + def __init__( + self, + plotly_name='streamtube', + parent_name='layout.template.data', + **kwargs + ): + super(StreamtubesValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Streamtube'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_surface.py b/plotly/validators/layout/template/data/_surface.py new file mode 100644 index 00000000000..104f08b8569 --- /dev/null +++ b/plotly/validators/layout/template/data/_surface.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class SurfacesValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, + plotly_name='surface', + parent_name='layout.template.data', + **kwargs + ): + super(SurfacesValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Surface'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_table.py b/plotly/validators/layout/template/data/_table.py new file mode 100644 index 00000000000..e58e8081fd7 --- /dev/null +++ b/plotly/validators/layout/template/data/_table.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TablesValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, + plotly_name='table', + parent_name='layout.template.data', + **kwargs + ): + super(TablesValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Table'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/template/data/_violin.py b/plotly/validators/layout/template/data/_violin.py new file mode 100644 index 00000000000..b3e1c8396f6 --- /dev/null +++ b/plotly/validators/layout/template/data/_violin.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class ViolinsValidator(_plotly_utils.basevalidators.CompoundArrayValidator): + + def __init__( + self, + plotly_name='violin', + parent_name='layout.template.data', + **kwargs + ): + super(ViolinsValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Violin'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) From afaaec8117296f17be8321b734d1ed097ceb941b Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sat, 6 Oct 2018 19:20:58 -0400 Subject: [PATCH 02/34] Updated codegen to add support for elementdefaults properties e.g. `layout.template.layout.annotationdefaults` --- codegen/__init__.py | 10 +- codegen/utils.py | 64 +++++- plotly/graph_objs/_carpet.py | 6 + plotly/graph_objs/_choropleth.py | 4 + plotly/graph_objs/_cone.py | 3 + plotly/graph_objs/_contour.py | 3 + plotly/graph_objs/_contourcarpet.py | 4 + plotly/graph_objs/_figure.py | 25 +++ plotly/graph_objs/_figurewidget.py | 25 +++ plotly/graph_objs/_heatmap.py | 3 + plotly/graph_objs/_heatmapgl.py | 4 + plotly/graph_objs/_histogram2d.py | 4 + plotly/graph_objs/_histogram2dcontour.py | 4 + plotly/graph_objs/_layout.py | 188 ++++++++++++++++++ plotly/graph_objs/_mesh3d.py | 3 + plotly/graph_objs/_parcoords.py | 35 ++++ plotly/graph_objs/_splom.py | 34 ++++ plotly/graph_objs/_streamtube.py | 4 + plotly/graph_objs/_surface.py | 3 + plotly/graph_objs/bar/_marker.py | 4 + plotly/graph_objs/bar/marker/_colorbar.py | 36 ++++ plotly/graph_objs/barpolar/_marker.py | 4 + .../graph_objs/barpolar/marker/_colorbar.py | 36 ++++ plotly/graph_objs/carpet/_aaxis.py | 36 ++++ plotly/graph_objs/carpet/_baxis.py | 36 ++++ plotly/graph_objs/choropleth/_colorbar.py | 36 ++++ plotly/graph_objs/cone/_colorbar.py | 36 ++++ plotly/graph_objs/contour/_colorbar.py | 36 ++++ plotly/graph_objs/contourcarpet/_colorbar.py | 36 ++++ plotly/graph_objs/heatmap/_colorbar.py | 36 ++++ plotly/graph_objs/heatmapgl/_colorbar.py | 36 ++++ plotly/graph_objs/histogram/_marker.py | 4 + .../graph_objs/histogram/marker/_colorbar.py | 36 ++++ plotly/graph_objs/histogram2d/_colorbar.py | 36 ++++ .../histogram2dcontour/_colorbar.py | 36 ++++ plotly/graph_objs/layout/_mapbox.py | 34 ++++ plotly/graph_objs/layout/_polar.py | 8 + plotly/graph_objs/layout/_scene.py | 46 +++++ plotly/graph_objs/layout/_slider.py | 33 +++ plotly/graph_objs/layout/_ternary.py | 12 ++ plotly/graph_objs/layout/_updatemenu.py | 34 ++++ plotly/graph_objs/layout/_xaxis.py | 40 ++++ plotly/graph_objs/layout/_yaxis.py | 36 ++++ .../graph_objs/layout/polar/_angularaxis.py | 36 ++++ plotly/graph_objs/layout/polar/_radialaxis.py | 36 ++++ plotly/graph_objs/layout/scene/_xaxis.py | 36 ++++ plotly/graph_objs/layout/scene/_yaxis.py | 36 ++++ plotly/graph_objs/layout/scene/_zaxis.py | 36 ++++ plotly/graph_objs/layout/ternary/_aaxis.py | 36 ++++ plotly/graph_objs/layout/ternary/_baxis.py | 36 ++++ plotly/graph_objs/layout/ternary/_caxis.py | 36 ++++ .../graph_objs/layout/xaxis/_rangeselector.py | 34 ++++ plotly/graph_objs/mesh3d/_colorbar.py | 36 ++++ plotly/graph_objs/parcoords/_line.py | 4 + plotly/graph_objs/parcoords/line/_colorbar.py | 36 ++++ plotly/graph_objs/scatter/_marker.py | 4 + plotly/graph_objs/scatter/marker/_colorbar.py | 36 ++++ plotly/graph_objs/scatter3d/_marker.py | 4 + .../graph_objs/scatter3d/marker/_colorbar.py | 36 ++++ plotly/graph_objs/scattercarpet/_marker.py | 4 + .../scattercarpet/marker/_colorbar.py | 36 ++++ plotly/graph_objs/scattergeo/_marker.py | 4 + .../graph_objs/scattergeo/marker/_colorbar.py | 36 ++++ plotly/graph_objs/scattergl/_marker.py | 4 + .../graph_objs/scattergl/marker/_colorbar.py | 36 ++++ plotly/graph_objs/scattermapbox/_marker.py | 4 + .../scattermapbox/marker/_colorbar.py | 36 ++++ plotly/graph_objs/scatterpolar/_marker.py | 4 + .../scatterpolar/marker/_colorbar.py | 36 ++++ plotly/graph_objs/scatterpolargl/_marker.py | 4 + .../scatterpolargl/marker/_colorbar.py | 36 ++++ plotly/graph_objs/scatterternary/_marker.py | 4 + .../scatterternary/marker/_colorbar.py | 36 ++++ plotly/graph_objs/splom/_marker.py | 4 + plotly/graph_objs/splom/marker/_colorbar.py | 36 ++++ plotly/graph_objs/streamtube/_colorbar.py | 36 ++++ plotly/graph_objs/surface/_colorbar.py | 36 ++++ plotly/validators/_layout.py | 15 ++ plotly/validators/_parcoords.py | 3 + plotly/validators/_splom.py | 3 + plotly/validators/bar/marker/_colorbar.py | 4 + .../bar/marker/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ .../validators/barpolar/marker/_colorbar.py | 4 + .../barpolar/marker/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ plotly/validators/carpet/_aaxis.py | 3 + plotly/validators/carpet/_baxis.py | 3 + plotly/validators/carpet/aaxis/__init__.py | 1 + .../carpet/aaxis/_tickformatstopdefaults.py | 19 ++ plotly/validators/carpet/baxis/__init__.py | 1 + .../carpet/baxis/_tickformatstopdefaults.py | 19 ++ plotly/validators/choropleth/_colorbar.py | 4 + .../choropleth/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ plotly/validators/cone/_colorbar.py | 3 + plotly/validators/cone/colorbar/__init__.py | 1 + .../cone/colorbar/_tickformatstopdefaults.py | 19 ++ plotly/validators/contour/_colorbar.py | 3 + .../validators/contour/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ plotly/validators/contourcarpet/_colorbar.py | 4 + .../contourcarpet/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ plotly/validators/heatmap/_colorbar.py | 3 + .../validators/heatmap/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ plotly/validators/heatmapgl/_colorbar.py | 4 + .../validators/heatmapgl/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ .../validators/histogram/marker/_colorbar.py | 4 + .../histogram/marker/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ plotly/validators/histogram2d/_colorbar.py | 4 + .../histogram2d/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ .../histogram2dcontour/_colorbar.py | 4 + .../histogram2dcontour/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ plotly/validators/layout/__init__.py | 5 + .../validators/layout/_annotationdefaults.py | 16 ++ plotly/validators/layout/_imagedefaults.py | 16 ++ plotly/validators/layout/_mapbox.py | 3 + plotly/validators/layout/_scene.py | 3 + plotly/validators/layout/_shapedefaults.py | 16 ++ plotly/validators/layout/_sliderdefaults.py | 16 ++ plotly/validators/layout/_sliders.py | 3 + .../validators/layout/_updatemenudefaults.py | 16 ++ plotly/validators/layout/_updatemenus.py | 3 + plotly/validators/layout/_xaxis.py | 3 + plotly/validators/layout/_yaxis.py | 3 + plotly/validators/layout/mapbox/__init__.py | 1 + .../layout/mapbox/_layerdefaults.py | 19 ++ .../validators/layout/polar/_angularaxis.py | 4 + plotly/validators/layout/polar/_radialaxis.py | 4 + .../layout/polar/angularaxis/__init__.py | 1 + .../angularaxis/_tickformatstopdefaults.py | 19 ++ .../layout/polar/radialaxis/__init__.py | 1 + .../radialaxis/_tickformatstopdefaults.py | 19 ++ plotly/validators/layout/scene/__init__.py | 1 + .../layout/scene/_annotationdefaults.py | 19 ++ plotly/validators/layout/scene/_xaxis.py | 4 + plotly/validators/layout/scene/_yaxis.py | 4 + plotly/validators/layout/scene/_zaxis.py | 4 + .../validators/layout/scene/xaxis/__init__.py | 1 + .../scene/xaxis/_tickformatstopdefaults.py | 19 ++ .../validators/layout/scene/yaxis/__init__.py | 1 + .../scene/yaxis/_tickformatstopdefaults.py | 19 ++ .../validators/layout/scene/zaxis/__init__.py | 1 + .../scene/zaxis/_tickformatstopdefaults.py | 19 ++ plotly/validators/layout/slider/__init__.py | 1 + .../validators/layout/slider/_stepdefaults.py | 19 ++ plotly/validators/layout/ternary/_aaxis.py | 4 + plotly/validators/layout/ternary/_baxis.py | 4 + plotly/validators/layout/ternary/_caxis.py | 4 + .../layout/ternary/aaxis/__init__.py | 1 + .../ternary/aaxis/_tickformatstopdefaults.py | 19 ++ .../layout/ternary/baxis/__init__.py | 1 + .../ternary/baxis/_tickformatstopdefaults.py | 19 ++ .../layout/ternary/caxis/__init__.py | 1 + .../ternary/caxis/_tickformatstopdefaults.py | 19 ++ .../validators/layout/updatemenu/__init__.py | 1 + .../layout/updatemenu/_buttondefaults.py | 19 ++ plotly/validators/layout/xaxis/__init__.py | 1 + .../validators/layout/xaxis/_rangeselector.py | 4 + .../layout/xaxis/_tickformatstopdefaults.py | 19 ++ .../layout/xaxis/rangeselector/__init__.py | 1 + .../xaxis/rangeselector/_buttondefaults.py | 19 ++ plotly/validators/layout/yaxis/__init__.py | 1 + .../layout/yaxis/_tickformatstopdefaults.py | 19 ++ plotly/validators/mesh3d/_colorbar.py | 3 + plotly/validators/mesh3d/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ plotly/validators/parcoords/__init__.py | 1 + .../parcoords/_dimensiondefaults.py | 19 ++ plotly/validators/parcoords/line/_colorbar.py | 4 + .../parcoords/line/colorbar/__init__.py | 1 + .../line/colorbar/_tickformatstopdefaults.py | 19 ++ plotly/validators/scatter/marker/_colorbar.py | 4 + .../scatter/marker/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ .../validators/scatter3d/marker/_colorbar.py | 4 + .../scatter3d/marker/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ .../scattercarpet/marker/_colorbar.py | 4 + .../scattercarpet/marker/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ .../validators/scattergeo/marker/_colorbar.py | 4 + .../scattergeo/marker/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ .../validators/scattergl/marker/_colorbar.py | 4 + .../scattergl/marker/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ .../scattermapbox/marker/_colorbar.py | 4 + .../scattermapbox/marker/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ .../scatterpolar/marker/_colorbar.py | 4 + .../scatterpolar/marker/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ .../scatterpolargl/marker/_colorbar.py | 4 + .../marker/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ .../scatterternary/marker/_colorbar.py | 4 + .../marker/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ plotly/validators/splom/__init__.py | 1 + plotly/validators/splom/_dimensiondefaults.py | 16 ++ plotly/validators/splom/marker/_colorbar.py | 4 + .../splom/marker/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ plotly/validators/streamtube/_colorbar.py | 4 + .../streamtube/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ plotly/validators/surface/_colorbar.py | 3 + .../validators/surface/colorbar/__init__.py | 1 + .../colorbar/_tickformatstopdefaults.py | 19 ++ 216 files changed, 3152 insertions(+), 5 deletions(-) create mode 100644 plotly/validators/bar/marker/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/barpolar/marker/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/carpet/aaxis/_tickformatstopdefaults.py create mode 100644 plotly/validators/carpet/baxis/_tickformatstopdefaults.py create mode 100644 plotly/validators/choropleth/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/cone/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/contour/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/contourcarpet/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/heatmap/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/heatmapgl/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/histogram/marker/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/histogram2d/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/histogram2dcontour/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/layout/_annotationdefaults.py create mode 100644 plotly/validators/layout/_imagedefaults.py create mode 100644 plotly/validators/layout/_shapedefaults.py create mode 100644 plotly/validators/layout/_sliderdefaults.py create mode 100644 plotly/validators/layout/_updatemenudefaults.py create mode 100644 plotly/validators/layout/mapbox/_layerdefaults.py create mode 100644 plotly/validators/layout/polar/angularaxis/_tickformatstopdefaults.py create mode 100644 plotly/validators/layout/polar/radialaxis/_tickformatstopdefaults.py create mode 100644 plotly/validators/layout/scene/_annotationdefaults.py create mode 100644 plotly/validators/layout/scene/xaxis/_tickformatstopdefaults.py create mode 100644 plotly/validators/layout/scene/yaxis/_tickformatstopdefaults.py create mode 100644 plotly/validators/layout/scene/zaxis/_tickformatstopdefaults.py create mode 100644 plotly/validators/layout/slider/_stepdefaults.py create mode 100644 plotly/validators/layout/ternary/aaxis/_tickformatstopdefaults.py create mode 100644 plotly/validators/layout/ternary/baxis/_tickformatstopdefaults.py create mode 100644 plotly/validators/layout/ternary/caxis/_tickformatstopdefaults.py create mode 100644 plotly/validators/layout/updatemenu/_buttondefaults.py create mode 100644 plotly/validators/layout/xaxis/_tickformatstopdefaults.py create mode 100644 plotly/validators/layout/xaxis/rangeselector/_buttondefaults.py create mode 100644 plotly/validators/layout/yaxis/_tickformatstopdefaults.py create mode 100644 plotly/validators/mesh3d/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/parcoords/_dimensiondefaults.py create mode 100644 plotly/validators/parcoords/line/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/scatter/marker/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/scatter3d/marker/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/scattercarpet/marker/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/scattergeo/marker/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/scattergl/marker/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/scattermapbox/marker/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/scatterpolar/marker/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/scatterpolargl/marker/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/scatterternary/marker/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/splom/_dimensiondefaults.py create mode 100644 plotly/validators/splom/marker/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/streamtube/colorbar/_tickformatstopdefaults.py create mode 100644 plotly/validators/surface/colorbar/_tickformatstopdefaults.py diff --git a/codegen/__init__.py b/codegen/__init__.py index 9decd7cb4ae..3d022c4f691 100644 --- a/codegen/__init__.py +++ b/codegen/__init__.py @@ -8,7 +8,7 @@ DEPRECATED_DATATYPES) from codegen.figure import write_figure_classes from codegen.utils import (TraceNode, PlotlyNode, LayoutNode, FrameNode, - write_init_py) + write_init_py, ElementDefaultsNode) from codegen.validators import (write_validator_py, write_data_validator_py, get_data_validator_instance) @@ -28,9 +28,10 @@ def preprocess_schema(plotly_schema): Central location to make changes to schema before it's seen by the PlotlyNode classes """ - layout = plotly_schema['layout']['layoutAttributes'] - template_description = layout['template']['description'] + # Update template + # --------------- + layout = plotly_schema['layout']['layoutAttributes'] # Create codegen-friendly template scheme template = { @@ -112,7 +113,8 @@ def perform_codegen(): all_frame_nodes) all_compound_nodes = [node for node in all_datatype_nodes - if node.is_compound] + if node.is_compound and + not isinstance(node, ElementDefaultsNode)] # Write out validators # -------------------- diff --git a/codegen/utils.py b/codegen/utils.py index 0c195ae7581..11a1da7e61e 100644 --- a/codegen/utils.py +++ b/codegen/utils.py @@ -787,7 +787,16 @@ def child_datatypes(self): nodes = [] for n in self.children: if n.is_array: + # Add array element node nodes.append(n.children[0].children[0]) + + # Add elementdefaults node. Require parent_path_parts not + # empty to avoid creating defaults classes for traces + if (n.parent_path_parts and + n.parent_path_parts != ('layout', 'template', 'data')): + + nodes.append(ElementDefaultsNode(n, self.plotly_schema)) + elif n.is_datatype: nodes.append(n) @@ -898,7 +907,11 @@ def get_all_compound_datatype_nodes(plotly_schema, node_class): if node.plotly_name and not node.is_array: nodes.append(node) - nodes_to_process.extend(node.child_compound_datatypes) + non_defaults_compound_children = [ + node for node in node.child_compound_datatypes + if not isinstance(node, ElementDefaultsNode)] + + nodes_to_process.extend(non_defaults_compound_children) return nodes @@ -1101,3 +1114,52 @@ def node_data(self) -> dict: node_data = node_data[prop_name] return node_data + + +class ElementDefaultsNode(PlotlyNode): + + def __init__(self, array_node, plotly_schema): + """ + + Parameters + ---------- + array_node: PlotlyNode + """ + super().__init__(plotly_schema, + node_path=array_node.node_path, + parent=array_node.parent) + + assert array_node.is_array + self.array_node = array_node + self.element_node = array_node.children[0].children[0] + + @property + def node_data(self): + return {} + + @property + def description(self): + return '' + + @property + def name_base_datatype(self): + return self.element_node.name_base_datatype + + @property + def root_name(self): + return self.array_node.root_name + + @property + def plotly_name(self): + return self.element_node.plotly_name + 'defaults' + + @property + def name_datatype_class(self): + """ + Name of the Python datatype class representing this node + + Returns + ------- + str + """ + return self.element_node.name_datatype_class diff --git a/plotly/graph_objs/_carpet.py b/plotly/graph_objs/_carpet.py index f83a00a20df..a1909d4df67 100644 --- a/plotly/graph_objs/_carpet.py +++ b/plotly/graph_objs/_carpet.py @@ -225,6 +225,9 @@ def aaxis(self): tickformatstops plotly.graph_objs.carpet.aaxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.carpet.aaxis.Tickformatstop + instance or dict with compatible properties tickmode tickprefix @@ -510,6 +513,9 @@ def baxis(self): tickformatstops plotly.graph_objs.carpet.baxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.carpet.baxis.Tickformatstop + instance or dict with compatible properties tickmode tickprefix diff --git a/plotly/graph_objs/_choropleth.py b/plotly/graph_objs/_choropleth.py index f4281efe77d..c89e21ba88c 100644 --- a/plotly/graph_objs/_choropleth.py +++ b/plotly/graph_objs/_choropleth.py @@ -170,6 +170,10 @@ def colorbar(self): plotly.graph_objs.choropleth.colorbar.Tickforma tstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.choropleth.colorbar.Tickforma + tstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/_cone.py b/plotly/graph_objs/_cone.py index 3edbba4ff4b..a02f0d76fc2 100644 --- a/plotly/graph_objs/_cone.py +++ b/plotly/graph_objs/_cone.py @@ -259,6 +259,9 @@ def colorbar(self): tickformatstops plotly.graph_objs.cone.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.cone.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/_contour.py b/plotly/graph_objs/_contour.py index d646e7f8e38..924ebeec08d 100644 --- a/plotly/graph_objs/_contour.py +++ b/plotly/graph_objs/_contour.py @@ -192,6 +192,9 @@ def colorbar(self): tickformatstops plotly.graph_objs.contour.colorbar.Tickformatst op instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.contour.colorbar.Tickformatst + op instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/_contourcarpet.py b/plotly/graph_objs/_contourcarpet.py index 5437f79269e..b896b735d06 100644 --- a/plotly/graph_objs/_contourcarpet.py +++ b/plotly/graph_objs/_contourcarpet.py @@ -385,6 +385,10 @@ def colorbar(self): plotly.graph_objs.contourcarpet.colorbar.Tickfo rmatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.contourcarpet.colorbar.Tickfo + rmatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/_figure.py b/plotly/graph_objs/_figure.py index 69517c0af7b..38a6a4e83ee 100644 --- a/plotly/graph_objs/_figure.py +++ b/plotly/graph_objs/_figure.py @@ -58,6 +58,9 @@ def __init__( annotations plotly.graph_objs.layout.Annotation instance or dict with compatible properties + annotationdefaults + plotly.graph_objs.layout.Annotation instance or + dict with compatible properties autosize Determines whether or not a layout width or height that has been left undefined by the user @@ -208,6 +211,9 @@ def __init__( images plotly.graph_objs.layout.Image instance or dict with compatible properties + imagedefaults + plotly.graph_objs.layout.Image instance or dict + with compatible properties legend plotly.graph_objs.layout.Legend instance or dict with compatible properties @@ -258,6 +264,9 @@ def __init__( shapes plotly.graph_objs.layout.Shape instance or dict with compatible properties + shapedefaults + plotly.graph_objs.layout.Shape instance or dict + with compatible properties showlegend Determines whether or not a legend is drawn. Default is `true` if there is a trace to show @@ -268,6 +277,9 @@ def __init__( sliders plotly.graph_objs.layout.Slider instance or dict with compatible properties + sliderdefaults + plotly.graph_objs.layout.Slider instance or + dict with compatible properties spikedistance Sets the default distance (in pixels) to look for data to draw spikelines to (-1 means no @@ -289,6 +301,9 @@ def __init__( updatemenus plotly.graph_objs.layout.Updatemenu instance or dict with compatible properties + updatemenudefaults + plotly.graph_objs.layout.Updatemenu instance or + dict with compatible properties violingap Sets the gap (in plot fraction) between violins of adjacent location coordinates. @@ -4902,6 +4917,7 @@ def add_parcoords( customdata=None, customdatasrc=None, dimensions=None, + dimensiondefaults=None, domain=None, hoverinfo=None, hoverinfosrc=None, @@ -4943,6 +4959,9 @@ def add_parcoords( dimensions The dimensions (variables) of the parallel coordinates chart. 2..60 dimensions are supported. + dimensiondefaults + plotly.graph_objs.parcoords.Dimension instance or dict + with compatible properties domain plotly.graph_objs.parcoords.Domain instance or dict with compatible properties @@ -5017,6 +5036,7 @@ def add_parcoords( customdata=customdata, customdatasrc=customdatasrc, dimensions=dimensions, + dimensiondefaults=dimensiondefaults, domain=domain, hoverinfo=hoverinfo, hoverinfosrc=hoverinfosrc, @@ -8112,6 +8132,7 @@ def add_splom( customdatasrc=None, diagonal=None, dimensions=None, + dimensiondefaults=None, hoverinfo=None, hoverinfosrc=None, hoverlabel=None, @@ -8164,6 +8185,9 @@ def add_splom( dimensions plotly.graph_objs.splom.Dimension instance or dict with compatible properties + dimensiondefaults + plotly.graph_objs.splom.Dimension instance or dict with + compatible properties hoverinfo Determines which trace information appear on hover. If `none` or `skip` are set, no information is displayed @@ -8258,6 +8282,7 @@ def add_splom( customdatasrc=customdatasrc, diagonal=diagonal, dimensions=dimensions, + dimensiondefaults=dimensiondefaults, hoverinfo=hoverinfo, hoverinfosrc=hoverinfosrc, hoverlabel=hoverlabel, diff --git a/plotly/graph_objs/_figurewidget.py b/plotly/graph_objs/_figurewidget.py index ceddb0eadc2..a86690a7b9b 100644 --- a/plotly/graph_objs/_figurewidget.py +++ b/plotly/graph_objs/_figurewidget.py @@ -58,6 +58,9 @@ def __init__( annotations plotly.graph_objs.layout.Annotation instance or dict with compatible properties + annotationdefaults + plotly.graph_objs.layout.Annotation instance or + dict with compatible properties autosize Determines whether or not a layout width or height that has been left undefined by the user @@ -208,6 +211,9 @@ def __init__( images plotly.graph_objs.layout.Image instance or dict with compatible properties + imagedefaults + plotly.graph_objs.layout.Image instance or dict + with compatible properties legend plotly.graph_objs.layout.Legend instance or dict with compatible properties @@ -258,6 +264,9 @@ def __init__( shapes plotly.graph_objs.layout.Shape instance or dict with compatible properties + shapedefaults + plotly.graph_objs.layout.Shape instance or dict + with compatible properties showlegend Determines whether or not a legend is drawn. Default is `true` if there is a trace to show @@ -268,6 +277,9 @@ def __init__( sliders plotly.graph_objs.layout.Slider instance or dict with compatible properties + sliderdefaults + plotly.graph_objs.layout.Slider instance or + dict with compatible properties spikedistance Sets the default distance (in pixels) to look for data to draw spikelines to (-1 means no @@ -289,6 +301,9 @@ def __init__( updatemenus plotly.graph_objs.layout.Updatemenu instance or dict with compatible properties + updatemenudefaults + plotly.graph_objs.layout.Updatemenu instance or + dict with compatible properties violingap Sets the gap (in plot fraction) between violins of adjacent location coordinates. @@ -4902,6 +4917,7 @@ def add_parcoords( customdata=None, customdatasrc=None, dimensions=None, + dimensiondefaults=None, domain=None, hoverinfo=None, hoverinfosrc=None, @@ -4943,6 +4959,9 @@ def add_parcoords( dimensions The dimensions (variables) of the parallel coordinates chart. 2..60 dimensions are supported. + dimensiondefaults + plotly.graph_objs.parcoords.Dimension instance or dict + with compatible properties domain plotly.graph_objs.parcoords.Domain instance or dict with compatible properties @@ -5017,6 +5036,7 @@ def add_parcoords( customdata=customdata, customdatasrc=customdatasrc, dimensions=dimensions, + dimensiondefaults=dimensiondefaults, domain=domain, hoverinfo=hoverinfo, hoverinfosrc=hoverinfosrc, @@ -8112,6 +8132,7 @@ def add_splom( customdatasrc=None, diagonal=None, dimensions=None, + dimensiondefaults=None, hoverinfo=None, hoverinfosrc=None, hoverlabel=None, @@ -8164,6 +8185,9 @@ def add_splom( dimensions plotly.graph_objs.splom.Dimension instance or dict with compatible properties + dimensiondefaults + plotly.graph_objs.splom.Dimension instance or dict with + compatible properties hoverinfo Determines which trace information appear on hover. If `none` or `skip` are set, no information is displayed @@ -8258,6 +8282,7 @@ def add_splom( customdatasrc=customdatasrc, diagonal=diagonal, dimensions=dimensions, + dimensiondefaults=dimensiondefaults, hoverinfo=hoverinfo, hoverinfosrc=hoverinfosrc, hoverlabel=hoverlabel, diff --git a/plotly/graph_objs/_heatmap.py b/plotly/graph_objs/_heatmap.py index 201f4b60dc1..aef76266292 100644 --- a/plotly/graph_objs/_heatmap.py +++ b/plotly/graph_objs/_heatmap.py @@ -169,6 +169,9 @@ def colorbar(self): tickformatstops plotly.graph_objs.heatmap.colorbar.Tickformatst op instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.heatmap.colorbar.Tickformatst + op instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/_heatmapgl.py b/plotly/graph_objs/_heatmapgl.py index ebecf75bdb3..9e83966c7fd 100644 --- a/plotly/graph_objs/_heatmapgl.py +++ b/plotly/graph_objs/_heatmapgl.py @@ -170,6 +170,10 @@ def colorbar(self): plotly.graph_objs.heatmapgl.colorbar.Tickformat stop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.heatmapgl.colorbar.Tickformat + stop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/_histogram2d.py b/plotly/graph_objs/_histogram2d.py index cea5756c4f3..b15e611952f 100644 --- a/plotly/graph_objs/_histogram2d.py +++ b/plotly/graph_objs/_histogram2d.py @@ -216,6 +216,10 @@ def colorbar(self): plotly.graph_objs.histogram2d.colorbar.Tickform atstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.histogram2d.colorbar.Tickform + atstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/_histogram2dcontour.py b/plotly/graph_objs/_histogram2dcontour.py index 65e61c1258c..05de3d326d2 100644 --- a/plotly/graph_objs/_histogram2dcontour.py +++ b/plotly/graph_objs/_histogram2dcontour.py @@ -239,6 +239,10 @@ def colorbar(self): plotly.graph_objs.histogram2dcontour.colorbar.T ickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.histogram2dcontour.colorbar.T + ickformatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/_layout.py b/plotly/graph_objs/_layout.py index 7bc3bd2dd3b..83d659aa59b 100644 --- a/plotly/graph_objs/_layout.py +++ b/plotly/graph_objs/_layout.py @@ -354,6 +354,29 @@ def annotations(self): def annotations(self, val): self['annotations'] = val + # annotationdefaults + # ------------------ + @property + def annotationdefaults(self): + """ + The 'annotationdefaults' property is an instance of Annotation + that may be specified as: + - An instance of plotly.graph_objs.layout.Annotation + - A dict of string/value properties that will be passed + to the Annotation constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.Annotation + """ + return self['annotationdefaults'] + + @annotationdefaults.setter + def annotationdefaults(self, val): + self['annotationdefaults'] = val + # autosize # -------- @property @@ -1241,6 +1264,29 @@ def images(self): def images(self, val): self['images'] = val + # imagedefaults + # ------------- + @property + def imagedefaults(self): + """ + The 'imagedefaults' property is an instance of Image + that may be specified as: + - An instance of plotly.graph_objs.layout.Image + - A dict of string/value properties that will be passed + to the Image constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.Image + """ + return self['imagedefaults'] + + @imagedefaults.setter + def imagedefaults(self, val): + self['imagedefaults'] = val + # legend # ------ @property @@ -1334,6 +1380,9 @@ def mapbox(self): layers plotly.graph_objs.layout.mapbox.Layer instance or dict with compatible properties + layerdefaults + plotly.graph_objs.layout.mapbox.Layer instance + or dict with compatible properties pitch Sets the pitch angle of the map (in degrees, where 0 means perpendicular to the surface of @@ -1709,6 +1758,9 @@ def scene(self): annotations plotly.graph_objs.layout.scene.Annotation instance or dict with compatible properties + annotationdefaults + plotly.graph_objs.layout.scene.Annotation + instance or dict with compatible properties aspectmode If "cube", this scene's axes are drawn as a cube, regardless of the axes' ranges. If @@ -1976,6 +2028,29 @@ def shapes(self): def shapes(self, val): self['shapes'] = val + # shapedefaults + # ------------- + @property + def shapedefaults(self): + """ + The 'shapedefaults' property is an instance of Shape + that may be specified as: + - An instance of plotly.graph_objs.layout.Shape + - A dict of string/value properties that will be passed + to the Shape constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.Shape + """ + return self['shapedefaults'] + + @shapedefaults.setter + def shapedefaults(self, val): + self['shapedefaults'] = val + # showlegend # ---------- @property @@ -2060,6 +2135,9 @@ def sliders(self): steps plotly.graph_objs.layout.slider.Step instance or dict with compatible properties + stepdefaults + plotly.graph_objs.layout.slider.Step instance + or dict with compatible properties templateitemname Used to refer to a named item in this array in the template. Named items from the template @@ -2110,6 +2188,29 @@ def sliders(self): def sliders(self, val): self['sliders'] = val + # sliderdefaults + # -------------- + @property + def sliderdefaults(self): + """ + The 'sliderdefaults' property is an instance of Slider + that may be specified as: + - An instance of plotly.graph_objs.layout.Slider + - A dict of string/value properties that will be passed + to the Slider constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.Slider + """ + return self['sliderdefaults'] + + @sliderdefaults.setter + def sliderdefaults(self, val): + self['sliderdefaults'] = val + # spikedistance # ------------- @property @@ -2300,6 +2401,9 @@ def updatemenus(self): buttons plotly.graph_objs.layout.updatemenu.Button instance or dict with compatible properties + buttondefaults + plotly.graph_objs.layout.updatemenu.Button + instance or dict with compatible properties direction Determines the direction in which the buttons are laid out, whether in a dropdown menu or a @@ -2369,6 +2473,29 @@ def updatemenus(self): def updatemenus(self, val): self['updatemenus'] = val + # updatemenudefaults + # ------------------ + @property + def updatemenudefaults(self): + """ + The 'updatemenudefaults' property is an instance of Updatemenu + that may be specified as: + - An instance of plotly.graph_objs.layout.Updatemenu + - A dict of string/value properties that will be passed + to the Updatemenu constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.Updatemenu + """ + return self['updatemenudefaults'] + + @updatemenudefaults.setter + def updatemenudefaults(self, val): + self['updatemenudefaults'] = val + # violingap # --------- @property @@ -2772,6 +2899,9 @@ def xaxis(self): tickformatstops plotly.graph_objs.layout.xaxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.xaxis.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -3154,6 +3284,9 @@ def yaxis(self): tickformatstops plotly.graph_objs.layout.yaxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.yaxis.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -3243,6 +3376,9 @@ def _prop_descriptions(self): annotations plotly.graph_objs.layout.Annotation instance or dict with compatible properties + annotationdefaults + plotly.graph_objs.layout.Annotation instance or dict + with compatible properties autosize Determines whether or not a layout width or height that has been left undefined by the user is initialized on @@ -3377,6 +3513,9 @@ def _prop_descriptions(self): images plotly.graph_objs.layout.Image instance or dict with compatible properties + imagedefaults + plotly.graph_objs.layout.Image instance or dict with + compatible properties legend plotly.graph_objs.layout.Legend instance or dict with compatible properties @@ -3423,6 +3562,9 @@ def _prop_descriptions(self): shapes plotly.graph_objs.layout.Shape instance or dict with compatible properties + shapedefaults + plotly.graph_objs.layout.Shape instance or dict with + compatible properties showlegend Determines whether or not a legend is drawn. Default is `true` if there is a trace to show and any of these: a) @@ -3432,6 +3574,9 @@ def _prop_descriptions(self): sliders plotly.graph_objs.layout.Slider instance or dict with compatible properties + sliderdefaults + plotly.graph_objs.layout.Slider instance or dict with + compatible properties spikedistance Sets the default distance (in pixels) to look for data to draw spikelines to (-1 means no cutoff, 0 means no @@ -3452,6 +3597,9 @@ def _prop_descriptions(self): updatemenus plotly.graph_objs.layout.Updatemenu instance or dict with compatible properties + updatemenudefaults + plotly.graph_objs.layout.Updatemenu instance or dict + with compatible properties violingap Sets the gap (in plot fraction) between violins of adjacent location coordinates. @@ -3480,6 +3628,7 @@ def __init__( arg=None, angularaxis=None, annotations=None, + annotationdefaults=None, autosize=None, bargap=None, bargroupgap=None, @@ -3506,6 +3655,7 @@ def __init__( hoverlabel=None, hovermode=None, images=None, + imagedefaults=None, legend=None, mapbox=None, margin=None, @@ -3519,14 +3669,17 @@ def __init__( selectdirection=None, separators=None, shapes=None, + shapedefaults=None, showlegend=None, sliders=None, + sliderdefaults=None, spikedistance=None, template=None, ternary=None, title=None, titlefont=None, updatemenus=None, + updatemenudefaults=None, violingap=None, violingroupgap=None, violinmode=None, @@ -3549,6 +3702,9 @@ def __init__( annotations plotly.graph_objs.layout.Annotation instance or dict with compatible properties + annotationdefaults + plotly.graph_objs.layout.Annotation instance or dict + with compatible properties autosize Determines whether or not a layout width or height that has been left undefined by the user is initialized on @@ -3683,6 +3839,9 @@ def __init__( images plotly.graph_objs.layout.Image instance or dict with compatible properties + imagedefaults + plotly.graph_objs.layout.Image instance or dict with + compatible properties legend plotly.graph_objs.layout.Legend instance or dict with compatible properties @@ -3729,6 +3888,9 @@ def __init__( shapes plotly.graph_objs.layout.Shape instance or dict with compatible properties + shapedefaults + plotly.graph_objs.layout.Shape instance or dict with + compatible properties showlegend Determines whether or not a legend is drawn. Default is `true` if there is a trace to show and any of these: a) @@ -3738,6 +3900,9 @@ def __init__( sliders plotly.graph_objs.layout.Slider instance or dict with compatible properties + sliderdefaults + plotly.graph_objs.layout.Slider instance or dict with + compatible properties spikedistance Sets the default distance (in pixels) to look for data to draw spikelines to (-1 means no cutoff, 0 means no @@ -3758,6 +3923,9 @@ def __init__( updatemenus plotly.graph_objs.layout.Updatemenu instance or dict with compatible properties + updatemenudefaults + plotly.graph_objs.layout.Updatemenu instance or dict + with compatible properties violingap Sets the gap (in plot fraction) between violins of adjacent location coordinates. @@ -3814,6 +3982,7 @@ def __init__( # --------------------- self._validators['angularaxis'] = v_layout.AngularAxisValidator() self._validators['annotations'] = v_layout.AnnotationsValidator() + self._validators['annotationdefaults'] = v_layout.AnnotationValidator() self._validators['autosize'] = v_layout.AutosizeValidator() self._validators['bargap'] = v_layout.BargapValidator() self._validators['bargroupgap'] = v_layout.BargroupgapValidator() @@ -3842,6 +4011,7 @@ def __init__( self._validators['hoverlabel'] = v_layout.HoverlabelValidator() self._validators['hovermode'] = v_layout.HovermodeValidator() self._validators['images'] = v_layout.ImagesValidator() + self._validators['imagedefaults'] = v_layout.ImageValidator() self._validators['legend'] = v_layout.LegendValidator() self._validators['mapbox'] = v_layout.MapboxValidator() self._validators['margin'] = v_layout.MarginValidator() @@ -3856,14 +4026,17 @@ def __init__( ] = v_layout.SelectdirectionValidator() self._validators['separators'] = v_layout.SeparatorsValidator() self._validators['shapes'] = v_layout.ShapesValidator() + self._validators['shapedefaults'] = v_layout.ShapeValidator() self._validators['showlegend'] = v_layout.ShowlegendValidator() self._validators['sliders'] = v_layout.SlidersValidator() + self._validators['sliderdefaults'] = v_layout.SliderValidator() self._validators['spikedistance'] = v_layout.SpikedistanceValidator() self._validators['template'] = v_layout.TemplateValidator() self._validators['ternary'] = v_layout.TernaryValidator() self._validators['title'] = v_layout.TitleValidator() self._validators['titlefont'] = v_layout.TitlefontValidator() self._validators['updatemenus'] = v_layout.UpdatemenusValidator() + self._validators['updatemenudefaults'] = v_layout.UpdatemenuValidator() self._validators['violingap'] = v_layout.ViolingapValidator() self._validators['violingroupgap'] = v_layout.ViolingroupgapValidator() self._validators['violinmode'] = v_layout.ViolinmodeValidator() @@ -3877,6 +4050,9 @@ def __init__( self['angularaxis'] = angularaxis if angularaxis is not None else _v _v = arg.pop('annotations', None) self['annotations'] = annotations if annotations is not None else _v + _v = arg.pop('annotationdefaults', None) + self['annotationdefaults' + ] = annotationdefaults if annotationdefaults is not None else _v _v = arg.pop('autosize', None) self['autosize'] = autosize if autosize is not None else _v _v = arg.pop('bargap', None) @@ -3932,6 +4108,9 @@ def __init__( self['hovermode'] = hovermode if hovermode is not None else _v _v = arg.pop('images', None) self['images'] = images if images is not None else _v + _v = arg.pop('imagedefaults', None) + self['imagedefaults' + ] = imagedefaults if imagedefaults is not None else _v _v = arg.pop('legend', None) self['legend'] = legend if legend is not None else _v _v = arg.pop('mapbox', None) @@ -3960,10 +4139,16 @@ def __init__( self['separators'] = separators if separators is not None else _v _v = arg.pop('shapes', None) self['shapes'] = shapes if shapes is not None else _v + _v = arg.pop('shapedefaults', None) + self['shapedefaults' + ] = shapedefaults if shapedefaults is not None else _v _v = arg.pop('showlegend', None) self['showlegend'] = showlegend if showlegend is not None else _v _v = arg.pop('sliders', None) self['sliders'] = sliders if sliders is not None else _v + _v = arg.pop('sliderdefaults', None) + self['sliderdefaults' + ] = sliderdefaults if sliderdefaults is not None else _v _v = arg.pop('spikedistance', None) self['spikedistance' ] = spikedistance if spikedistance is not None else _v @@ -3979,6 +4164,9 @@ def __init__( self['titlefont'] = titlefont if titlefont is not None else _v _v = arg.pop('updatemenus', None) self['updatemenus'] = updatemenus if updatemenus is not None else _v + _v = arg.pop('updatemenudefaults', None) + self['updatemenudefaults' + ] = updatemenudefaults if updatemenudefaults is not None else _v _v = arg.pop('violingap', None) self['violingap'] = violingap if violingap is not None else _v _v = arg.pop('violingroupgap', None) diff --git a/plotly/graph_objs/_mesh3d.py b/plotly/graph_objs/_mesh3d.py index 941f69ba1a4..4250bd59c1b 100644 --- a/plotly/graph_objs/_mesh3d.py +++ b/plotly/graph_objs/_mesh3d.py @@ -332,6 +332,9 @@ def colorbar(self): tickformatstops plotly.graph_objs.mesh3d.colorbar.Tickformatsto p instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.mesh3d.colorbar.Tickformatsto + p instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/_parcoords.py b/plotly/graph_objs/_parcoords.py index 638fcdaa4e4..4619deedf9e 100644 --- a/plotly/graph_objs/_parcoords.py +++ b/plotly/graph_objs/_parcoords.py @@ -145,6 +145,29 @@ def dimensions(self): def dimensions(self, val): self['dimensions'] = val + # dimensiondefaults + # ----------------- + @property + def dimensiondefaults(self): + """ + The 'dimensiondefaults' property is an instance of Dimension + that may be specified as: + - An instance of plotly.graph_objs.parcoords.Dimension + - A dict of string/value properties that will be passed + to the Dimension constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.parcoords.Dimension + """ + return self['dimensiondefaults'] + + @dimensiondefaults.setter + def dimensiondefaults(self, val): + self['dimensiondefaults'] = val + # domain # ------ @property @@ -759,6 +782,9 @@ def _prop_descriptions(self): dimensions The dimensions (variables) of the parallel coordinates chart. 2..60 dimensions are supported. + dimensiondefaults + plotly.graph_objs.parcoords.Dimension instance or dict + with compatible properties domain plotly.graph_objs.parcoords.Domain instance or dict with compatible properties @@ -824,6 +850,7 @@ def __init__( customdata=None, customdatasrc=None, dimensions=None, + dimensiondefaults=None, domain=None, hoverinfo=None, hoverinfosrc=None, @@ -866,6 +893,9 @@ def __init__( dimensions The dimensions (variables) of the parallel coordinates chart. 2..60 dimensions are supported. + dimensiondefaults + plotly.graph_objs.parcoords.Dimension instance or dict + with compatible properties domain plotly.graph_objs.parcoords.Domain instance or dict with compatible properties @@ -960,6 +990,8 @@ def __init__( self._validators['customdatasrc' ] = v_parcoords.CustomdatasrcValidator() self._validators['dimensions'] = v_parcoords.DimensionsValidator() + self._validators['dimensiondefaults' + ] = v_parcoords.DimensionValidator() self._validators['domain'] = v_parcoords.DomainValidator() self._validators['hoverinfo'] = v_parcoords.HoverinfoValidator() self._validators['hoverinfosrc'] = v_parcoords.HoverinfosrcValidator() @@ -989,6 +1021,9 @@ def __init__( ] = customdatasrc if customdatasrc is not None else _v _v = arg.pop('dimensions', None) self['dimensions'] = dimensions if dimensions is not None else _v + _v = arg.pop('dimensiondefaults', None) + self['dimensiondefaults' + ] = dimensiondefaults if dimensiondefaults is not None else _v _v = arg.pop('domain', None) self['domain'] = domain if domain is not None else _v _v = arg.pop('hoverinfo', None) diff --git a/plotly/graph_objs/_splom.py b/plotly/graph_objs/_splom.py index 4bc4962893c..2df076449d8 100644 --- a/plotly/graph_objs/_splom.py +++ b/plotly/graph_objs/_splom.py @@ -135,6 +135,29 @@ def dimensions(self): def dimensions(self, val): self['dimensions'] = val + # dimensiondefaults + # ----------------- + @property + def dimensiondefaults(self): + """ + The 'dimensiondefaults' property is an instance of Dimension + that may be specified as: + - An instance of plotly.graph_objs.splom.Dimension + - A dict of string/value properties that will be passed + to the Dimension constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.splom.Dimension + """ + return self['dimensiondefaults'] + + @dimensiondefaults.setter + def dimensiondefaults(self, val): + self['dimensiondefaults'] = val + # hoverinfo # --------- @property @@ -812,6 +835,9 @@ def _prop_descriptions(self): dimensions plotly.graph_objs.splom.Dimension instance or dict with compatible properties + dimensiondefaults + plotly.graph_objs.splom.Dimension instance or dict with + compatible properties hoverinfo Determines which trace information appear on hover. If `none` or `skip` are set, no information is displayed @@ -897,6 +923,7 @@ def __init__( customdatasrc=None, diagonal=None, dimensions=None, + dimensiondefaults=None, hoverinfo=None, hoverinfosrc=None, hoverlabel=None, @@ -950,6 +977,9 @@ def __init__( dimensions plotly.graph_objs.splom.Dimension instance or dict with compatible properties + dimensiondefaults + plotly.graph_objs.splom.Dimension instance or dict with + compatible properties hoverinfo Determines which trace information appear on hover. If `none` or `skip` are set, no information is displayed @@ -1063,6 +1093,7 @@ def __init__( self._validators['customdatasrc'] = v_splom.CustomdatasrcValidator() self._validators['diagonal'] = v_splom.DiagonalValidator() self._validators['dimensions'] = v_splom.DimensionsValidator() + self._validators['dimensiondefaults'] = v_splom.DimensionValidator() self._validators['hoverinfo'] = v_splom.HoverinfoValidator() self._validators['hoverinfosrc'] = v_splom.HoverinfosrcValidator() self._validators['hoverlabel'] = v_splom.HoverlabelValidator() @@ -1097,6 +1128,9 @@ def __init__( self['diagonal'] = diagonal if diagonal is not None else _v _v = arg.pop('dimensions', None) self['dimensions'] = dimensions if dimensions is not None else _v + _v = arg.pop('dimensiondefaults', None) + self['dimensiondefaults' + ] = dimensiondefaults if dimensiondefaults is not None else _v _v = arg.pop('hoverinfo', None) self['hoverinfo'] = hoverinfo if hoverinfo is not None else _v _v = arg.pop('hoverinfosrc', None) diff --git a/plotly/graph_objs/_streamtube.py b/plotly/graph_objs/_streamtube.py index b43a7ecbe10..c2b6ba1c73e 100644 --- a/plotly/graph_objs/_streamtube.py +++ b/plotly/graph_objs/_streamtube.py @@ -237,6 +237,10 @@ def colorbar(self): plotly.graph_objs.streamtube.colorbar.Tickforma tstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.streamtube.colorbar.Tickforma + tstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/_surface.py b/plotly/graph_objs/_surface.py index 482c47f88f4..4f946f4e537 100644 --- a/plotly/graph_objs/_surface.py +++ b/plotly/graph_objs/_surface.py @@ -236,6 +236,9 @@ def colorbar(self): tickformatstops plotly.graph_objs.surface.colorbar.Tickformatst op instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.surface.colorbar.Tickformatst + op instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/bar/_marker.py b/plotly/graph_objs/bar/_marker.py index fedec467678..17a3e70f411 100644 --- a/plotly/graph_objs/bar/_marker.py +++ b/plotly/graph_objs/bar/_marker.py @@ -307,6 +307,10 @@ def colorbar(self): plotly.graph_objs.bar.marker.colorbar.Tickforma tstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.bar.marker.colorbar.Tickforma + tstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/bar/marker/_colorbar.py b/plotly/graph_objs/bar/marker/_colorbar.py index 39f6c4b519e..ecd34590dd9 100644 --- a/plotly/graph_objs/bar/marker/_colorbar.py +++ b/plotly/graph_objs/bar/marker/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.bar.marker.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.bar.marker.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.bar.marker.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.bar.marker.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1530,6 +1557,9 @@ def __init__( tickformatstops plotly.graph_objs.bar.marker.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.bar.marker.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1652,6 +1682,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1727,6 +1759,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/barpolar/_marker.py b/plotly/graph_objs/barpolar/_marker.py index 68415ad529c..963b0412932 100644 --- a/plotly/graph_objs/barpolar/_marker.py +++ b/plotly/graph_objs/barpolar/_marker.py @@ -307,6 +307,10 @@ def colorbar(self): plotly.graph_objs.barpolar.marker.colorbar.Tick formatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.barpolar.marker.colorbar.Tick + formatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/barpolar/marker/_colorbar.py b/plotly/graph_objs/barpolar/marker/_colorbar.py index a1a57b225b0..17839e821ee 100644 --- a/plotly/graph_objs/barpolar/marker/_colorbar.py +++ b/plotly/graph_objs/barpolar/marker/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.barpolar.marker.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.barpolar.marker.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.barpolar.marker.colorbar.Tickformatst op instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.barpolar.marker.colorbar.Tickformatst + op instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1531,6 +1558,9 @@ def __init__( tickformatstops plotly.graph_objs.barpolar.marker.colorbar.Tickformatst op instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.barpolar.marker.colorbar.Tickformatst + op instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1653,6 +1683,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1728,6 +1760,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/carpet/_aaxis.py b/plotly/graph_objs/carpet/_aaxis.py index 89de875f4a3..5369fcbc748 100644 --- a/plotly/graph_objs/carpet/_aaxis.py +++ b/plotly/graph_objs/carpet/_aaxis.py @@ -1235,6 +1235,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.carpet.aaxis.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.carpet.aaxis.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # tickmode # -------- @property @@ -1653,6 +1676,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.carpet.aaxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.carpet.aaxis.Tickformatstop instance + or dict with compatible properties tickmode tickprefix @@ -1730,6 +1756,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, tickmode=None, tickprefix=None, ticksuffix=None, @@ -1904,6 +1931,9 @@ def __init__( tickformatstops plotly.graph_objs.carpet.aaxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.carpet.aaxis.Tickformatstop instance + or dict with compatible properties tickmode tickprefix @@ -2012,6 +2042,8 @@ def __init__( self._validators['tickformat'] = v_aaxis.TickformatValidator() self._validators['tickformatstops' ] = v_aaxis.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_aaxis.TickformatstopValidator() self._validators['tickmode'] = v_aaxis.TickmodeValidator() self._validators['tickprefix'] = v_aaxis.TickprefixValidator() self._validators['ticksuffix'] = v_aaxis.TicksuffixValidator() @@ -2126,6 +2158,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('tickmode', None) self['tickmode'] = tickmode if tickmode is not None else _v _v = arg.pop('tickprefix', None) diff --git a/plotly/graph_objs/carpet/_baxis.py b/plotly/graph_objs/carpet/_baxis.py index a83242836b5..1e2b5ba1dad 100644 --- a/plotly/graph_objs/carpet/_baxis.py +++ b/plotly/graph_objs/carpet/_baxis.py @@ -1235,6 +1235,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.carpet.baxis.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.carpet.baxis.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # tickmode # -------- @property @@ -1653,6 +1676,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.carpet.baxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.carpet.baxis.Tickformatstop instance + or dict with compatible properties tickmode tickprefix @@ -1730,6 +1756,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, tickmode=None, tickprefix=None, ticksuffix=None, @@ -1904,6 +1931,9 @@ def __init__( tickformatstops plotly.graph_objs.carpet.baxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.carpet.baxis.Tickformatstop instance + or dict with compatible properties tickmode tickprefix @@ -2012,6 +2042,8 @@ def __init__( self._validators['tickformat'] = v_baxis.TickformatValidator() self._validators['tickformatstops' ] = v_baxis.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_baxis.TickformatstopValidator() self._validators['tickmode'] = v_baxis.TickmodeValidator() self._validators['tickprefix'] = v_baxis.TickprefixValidator() self._validators['ticksuffix'] = v_baxis.TicksuffixValidator() @@ -2126,6 +2158,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('tickmode', None) self['tickmode'] = tickmode if tickmode is not None else _v _v = arg.pop('tickprefix', None) diff --git a/plotly/graph_objs/choropleth/_colorbar.py b/plotly/graph_objs/choropleth/_colorbar.py index 52b00b87af7..eeb73f94439 100644 --- a/plotly/graph_objs/choropleth/_colorbar.py +++ b/plotly/graph_objs/choropleth/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.choropleth.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.choropleth.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.choropleth.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.choropleth.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1530,6 +1557,9 @@ def __init__( tickformatstops plotly.graph_objs.choropleth.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.choropleth.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1652,6 +1682,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1727,6 +1759,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/cone/_colorbar.py b/plotly/graph_objs/cone/_colorbar.py index acdc7f9215d..4e46bb4609e 100644 --- a/plotly/graph_objs/cone/_colorbar.py +++ b/plotly/graph_objs/cone/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.cone.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.cone.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.cone.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.cone.colorbar.Tickformatstop instance + or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1530,6 +1557,9 @@ def __init__( tickformatstops plotly.graph_objs.cone.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.cone.colorbar.Tickformatstop instance + or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1652,6 +1682,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1727,6 +1759,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/contour/_colorbar.py b/plotly/graph_objs/contour/_colorbar.py index 43e5dfc5ed0..241fdb08f37 100644 --- a/plotly/graph_objs/contour/_colorbar.py +++ b/plotly/graph_objs/contour/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.contour.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.contour.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.contour.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.contour.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1530,6 +1557,9 @@ def __init__( tickformatstops plotly.graph_objs.contour.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.contour.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1652,6 +1682,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1727,6 +1759,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/contourcarpet/_colorbar.py b/plotly/graph_objs/contourcarpet/_colorbar.py index 578cad099da..d72286f8ca0 100644 --- a/plotly/graph_objs/contourcarpet/_colorbar.py +++ b/plotly/graph_objs/contourcarpet/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.contourcarpet.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.contourcarpet.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.contourcarpet.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.contourcarpet.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1530,6 +1557,9 @@ def __init__( tickformatstops plotly.graph_objs.contourcarpet.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.contourcarpet.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1652,6 +1682,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1727,6 +1759,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/heatmap/_colorbar.py b/plotly/graph_objs/heatmap/_colorbar.py index 5f779b66346..d4d2e44e71e 100644 --- a/plotly/graph_objs/heatmap/_colorbar.py +++ b/plotly/graph_objs/heatmap/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.heatmap.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.heatmap.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.heatmap.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.heatmap.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1530,6 +1557,9 @@ def __init__( tickformatstops plotly.graph_objs.heatmap.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.heatmap.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1652,6 +1682,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1727,6 +1759,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/heatmapgl/_colorbar.py b/plotly/graph_objs/heatmapgl/_colorbar.py index 5fdeb1954e6..740cb375dcb 100644 --- a/plotly/graph_objs/heatmapgl/_colorbar.py +++ b/plotly/graph_objs/heatmapgl/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.heatmapgl.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.heatmapgl.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.heatmapgl.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.heatmapgl.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1530,6 +1557,9 @@ def __init__( tickformatstops plotly.graph_objs.heatmapgl.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.heatmapgl.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1652,6 +1682,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1727,6 +1759,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/histogram/_marker.py b/plotly/graph_objs/histogram/_marker.py index 41ed3b27c29..97e129641b2 100644 --- a/plotly/graph_objs/histogram/_marker.py +++ b/plotly/graph_objs/histogram/_marker.py @@ -307,6 +307,10 @@ def colorbar(self): plotly.graph_objs.histogram.marker.colorbar.Tic kformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.histogram.marker.colorbar.Tic + kformatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/histogram/marker/_colorbar.py b/plotly/graph_objs/histogram/marker/_colorbar.py index c4dd458ec20..69774ce6d4e 100644 --- a/plotly/graph_objs/histogram/marker/_colorbar.py +++ b/plotly/graph_objs/histogram/marker/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.histogram.marker.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.histogram.marker.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.histogram.marker.colorbar.Tickformats top instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.histogram.marker.colorbar.Tickformats + top instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1531,6 +1558,9 @@ def __init__( tickformatstops plotly.graph_objs.histogram.marker.colorbar.Tickformats top instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.histogram.marker.colorbar.Tickformats + top instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1653,6 +1683,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1728,6 +1760,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/histogram2d/_colorbar.py b/plotly/graph_objs/histogram2d/_colorbar.py index 7867b6ced30..a31a062eb61 100644 --- a/plotly/graph_objs/histogram2d/_colorbar.py +++ b/plotly/graph_objs/histogram2d/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.histogram2d.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.histogram2d.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.histogram2d.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.histogram2d.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1530,6 +1557,9 @@ def __init__( tickformatstops plotly.graph_objs.histogram2d.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.histogram2d.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1652,6 +1682,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1727,6 +1759,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/histogram2dcontour/_colorbar.py b/plotly/graph_objs/histogram2dcontour/_colorbar.py index 7f4ce7b2ae2..a9e9116eeda 100644 --- a/plotly/graph_objs/histogram2dcontour/_colorbar.py +++ b/plotly/graph_objs/histogram2dcontour/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.histogram2dcontour.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.histogram2dcontour.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.histogram2dcontour.colorbar.Tickforma tstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.histogram2dcontour.colorbar.Tickforma + tstop instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1531,6 +1558,9 @@ def __init__( tickformatstops plotly.graph_objs.histogram2dcontour.colorbar.Tickforma tstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.histogram2dcontour.colorbar.Tickforma + tstop instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1655,6 +1685,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1730,6 +1762,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/layout/_mapbox.py b/plotly/graph_objs/layout/_mapbox.py index 2372e657f62..d8a998741e9 100644 --- a/plotly/graph_objs/layout/_mapbox.py +++ b/plotly/graph_objs/layout/_mapbox.py @@ -205,6 +205,29 @@ def layers(self): def layers(self, val): self['layers'] = val + # layerdefaults + # ------------- + @property + def layerdefaults(self): + """ + The 'layerdefaults' property is an instance of Layer + that may be specified as: + - An instance of plotly.graph_objs.layout.mapbox.Layer + - A dict of string/value properties that will be passed + to the Layer constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.mapbox.Layer + """ + return self['layerdefaults'] + + @layerdefaults.setter + def layerdefaults(self, val): + self['layerdefaults'] = val + # pitch # ----- @property @@ -294,6 +317,9 @@ def _prop_descriptions(self): layers plotly.graph_objs.layout.mapbox.Layer instance or dict with compatible properties + layerdefaults + plotly.graph_objs.layout.mapbox.Layer instance or dict + with compatible properties pitch Sets the pitch angle of the map (in degrees, where 0 means perpendicular to the surface of the map). @@ -313,6 +339,7 @@ def __init__( center=None, domain=None, layers=None, + layerdefaults=None, pitch=None, style=None, zoom=None, @@ -342,6 +369,9 @@ def __init__( layers plotly.graph_objs.layout.mapbox.Layer instance or dict with compatible properties + layerdefaults + plotly.graph_objs.layout.mapbox.Layer instance or dict + with compatible properties pitch Sets the pitch angle of the map (in degrees, where 0 means perpendicular to the surface of the map). @@ -389,6 +419,7 @@ def __init__( self._validators['center'] = v_mapbox.CenterValidator() self._validators['domain'] = v_mapbox.DomainValidator() self._validators['layers'] = v_mapbox.LayersValidator() + self._validators['layerdefaults'] = v_mapbox.LayerValidator() self._validators['pitch'] = v_mapbox.PitchValidator() self._validators['style'] = v_mapbox.StyleValidator() self._validators['zoom'] = v_mapbox.ZoomValidator() @@ -405,6 +436,9 @@ def __init__( self['domain'] = domain if domain is not None else _v _v = arg.pop('layers', None) self['layers'] = layers if layers is not None else _v + _v = arg.pop('layerdefaults', None) + self['layerdefaults' + ] = layerdefaults if layerdefaults is not None else _v _v = arg.pop('pitch', None) self['pitch'] = pitch if pitch is not None else _v _v = arg.pop('style', None) diff --git a/plotly/graph_objs/layout/_polar.py b/plotly/graph_objs/layout/_polar.py index c52ec4e2cb9..e6e90c7ef83 100644 --- a/plotly/graph_objs/layout/_polar.py +++ b/plotly/graph_objs/layout/_polar.py @@ -198,6 +198,10 @@ def angularaxis(self): plotly.graph_objs.layout.polar.angularaxis.Tick formatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.polar.angularaxis.Tick + formatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode @@ -664,6 +668,10 @@ def radialaxis(self): plotly.graph_objs.layout.polar.radialaxis.Tickf ormatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.polar.radialaxis.Tickf + ormatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/layout/_scene.py b/plotly/graph_objs/layout/_scene.py index 0c8131baa09..826ca165ebe 100644 --- a/plotly/graph_objs/layout/_scene.py +++ b/plotly/graph_objs/layout/_scene.py @@ -205,6 +205,29 @@ def annotations(self): def annotations(self, val): self['annotations'] = val + # annotationdefaults + # ------------------ + @property + def annotationdefaults(self): + """ + The 'annotationdefaults' property is an instance of Annotation + that may be specified as: + - An instance of plotly.graph_objs.layout.scene.Annotation + - A dict of string/value properties that will be passed + to the Annotation constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.scene.Annotation + """ + return self['annotationdefaults'] + + @annotationdefaults.setter + def annotationdefaults(self, val): + self['annotationdefaults'] = val + # aspectmode # ---------- @property @@ -663,6 +686,10 @@ def xaxis(self): plotly.graph_objs.layout.scene.xaxis.Tickformat stop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.scene.xaxis.Tickformat + stop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode @@ -958,6 +985,10 @@ def yaxis(self): plotly.graph_objs.layout.scene.yaxis.Tickformat stop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.scene.yaxis.Tickformat + stop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode @@ -1253,6 +1284,10 @@ def zaxis(self): plotly.graph_objs.layout.scene.zaxis.Tickformat stop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.scene.zaxis.Tickformat + stop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode @@ -1339,6 +1374,9 @@ def _prop_descriptions(self): annotations plotly.graph_objs.layout.scene.Annotation instance or dict with compatible properties + annotationdefaults + plotly.graph_objs.layout.scene.Annotation instance or + dict with compatible properties aspectmode If "cube", this scene's axes are drawn as a cube, regardless of the axes' ranges. If "data", this scene's @@ -1381,6 +1419,7 @@ def __init__( self, arg=None, annotations=None, + annotationdefaults=None, aspectmode=None, aspectratio=None, bgcolor=None, @@ -1404,6 +1443,9 @@ def __init__( annotations plotly.graph_objs.layout.scene.Annotation instance or dict with compatible properties + annotationdefaults + plotly.graph_objs.layout.scene.Annotation instance or + dict with compatible properties aspectmode If "cube", this scene's axes are drawn as a cube, regardless of the axes' ranges. If "data", this scene's @@ -1474,6 +1516,7 @@ def __init__( # Initialize validators # --------------------- self._validators['annotations'] = v_scene.AnnotationsValidator() + self._validators['annotationdefaults'] = v_scene.AnnotationValidator() self._validators['aspectmode'] = v_scene.AspectmodeValidator() self._validators['aspectratio'] = v_scene.AspectratioValidator() self._validators['bgcolor'] = v_scene.BgcolorValidator() @@ -1489,6 +1532,9 @@ def __init__( # ---------------------------------- _v = arg.pop('annotations', None) self['annotations'] = annotations if annotations is not None else _v + _v = arg.pop('annotationdefaults', None) + self['annotationdefaults' + ] = annotationdefaults if annotationdefaults is not None else _v _v = arg.pop('aspectmode', None) self['aspectmode'] = aspectmode if aspectmode is not None else _v _v = arg.pop('aspectratio', None) diff --git a/plotly/graph_objs/layout/_slider.py b/plotly/graph_objs/layout/_slider.py index b095693651c..f20f2a84f10 100644 --- a/plotly/graph_objs/layout/_slider.py +++ b/plotly/graph_objs/layout/_slider.py @@ -512,6 +512,29 @@ def steps(self): def steps(self, val): self['steps'] = val + # stepdefaults + # ------------ + @property + def stepdefaults(self): + """ + The 'stepdefaults' property is an instance of Step + that may be specified as: + - An instance of plotly.graph_objs.layout.slider.Step + - A dict of string/value properties that will be passed + to the Step constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.slider.Step + """ + return self['stepdefaults'] + + @stepdefaults.setter + def stepdefaults(self, val): + self['stepdefaults'] = val + # templateitemname # ---------------- @property @@ -828,6 +851,9 @@ def _prop_descriptions(self): steps plotly.graph_objs.layout.slider.Step instance or dict with compatible properties + stepdefaults + plotly.graph_objs.layout.slider.Step instance or dict + with compatible properties templateitemname Used to refer to a named item in this array in the template. Named items from the template will be created @@ -881,6 +907,7 @@ def __init__( name=None, pad=None, steps=None, + stepdefaults=None, templateitemname=None, tickcolor=None, ticklen=None, @@ -944,6 +971,9 @@ def __init__( steps plotly.graph_objs.layout.slider.Step instance or dict with compatible properties + stepdefaults + plotly.graph_objs.layout.slider.Step instance or dict + with compatible properties templateitemname Used to refer to a named item in this array in the template. Named items from the template will be created @@ -1025,6 +1055,7 @@ def __init__( self._validators['name'] = v_slider.NameValidator() self._validators['pad'] = v_slider.PadValidator() self._validators['steps'] = v_slider.StepsValidator() + self._validators['stepdefaults'] = v_slider.StepValidator() self._validators['templateitemname' ] = v_slider.TemplateitemnameValidator() self._validators['tickcolor'] = v_slider.TickcolorValidator() @@ -1066,6 +1097,8 @@ def __init__( self['pad'] = pad if pad is not None else _v _v = arg.pop('steps', None) self['steps'] = steps if steps is not None else _v + _v = arg.pop('stepdefaults', None) + self['stepdefaults'] = stepdefaults if stepdefaults is not None else _v _v = arg.pop('templateitemname', None) self['templateitemname' ] = templateitemname if templateitemname is not None else _v diff --git a/plotly/graph_objs/layout/_ternary.py b/plotly/graph_objs/layout/_ternary.py index 76e7f4e9312..63b768807b1 100644 --- a/plotly/graph_objs/layout/_ternary.py +++ b/plotly/graph_objs/layout/_ternary.py @@ -162,6 +162,10 @@ def aaxis(self): plotly.graph_objs.layout.ternary.aaxis.Tickform atstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.ternary.aaxis.Tickform + atstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode @@ -374,6 +378,10 @@ def baxis(self): plotly.graph_objs.layout.ternary.baxis.Tickform atstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.ternary.baxis.Tickform + atstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode @@ -645,6 +653,10 @@ def caxis(self): plotly.graph_objs.layout.ternary.caxis.Tickform atstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.ternary.caxis.Tickform + atstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/layout/_updatemenu.py b/plotly/graph_objs/layout/_updatemenu.py index 75a987c5360..4376c830ded 100644 --- a/plotly/graph_objs/layout/_updatemenu.py +++ b/plotly/graph_objs/layout/_updatemenu.py @@ -235,6 +235,29 @@ def buttons(self): def buttons(self, val): self['buttons'] = val + # buttondefaults + # -------------- + @property + def buttondefaults(self): + """ + The 'buttondefaults' property is an instance of Button + that may be specified as: + - An instance of plotly.graph_objs.layout.updatemenu.Button + - A dict of string/value properties that will be passed + to the Button constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.updatemenu.Button + """ + return self['buttondefaults'] + + @buttondefaults.setter + def buttondefaults(self, val): + self['buttondefaults'] = val + # direction # --------- @property @@ -572,6 +595,9 @@ def _prop_descriptions(self): buttons plotly.graph_objs.layout.updatemenu.Button instance or dict with compatible properties + buttondefaults + plotly.graph_objs.layout.updatemenu.Button instance or + dict with compatible properties direction Determines the direction in which the buttons are laid out, whether in a dropdown menu or a row/column of @@ -634,6 +660,7 @@ def __init__( bordercolor=None, borderwidth=None, buttons=None, + buttondefaults=None, direction=None, font=None, name=None, @@ -669,6 +696,9 @@ def __init__( buttons plotly.graph_objs.layout.updatemenu.Button instance or dict with compatible properties + buttondefaults + plotly.graph_objs.layout.updatemenu.Button instance or + dict with compatible properties direction Determines the direction in which the buttons are laid out, whether in a dropdown menu or a row/column of @@ -759,6 +789,7 @@ def __init__( self._validators['bordercolor'] = v_updatemenu.BordercolorValidator() self._validators['borderwidth'] = v_updatemenu.BorderwidthValidator() self._validators['buttons'] = v_updatemenu.ButtonsValidator() + self._validators['buttondefaults'] = v_updatemenu.ButtonValidator() self._validators['direction'] = v_updatemenu.DirectionValidator() self._validators['font'] = v_updatemenu.FontValidator() self._validators['name'] = v_updatemenu.NameValidator() @@ -785,6 +816,9 @@ def __init__( self['borderwidth'] = borderwidth if borderwidth is not None else _v _v = arg.pop('buttons', None) self['buttons'] = buttons if buttons is not None else _v + _v = arg.pop('buttondefaults', None) + self['buttondefaults' + ] = buttondefaults if buttondefaults is not None else _v _v = arg.pop('direction', None) self['direction'] = direction if direction is not None else _v _v = arg.pop('font', None) diff --git a/plotly/graph_objs/layout/_xaxis.py b/plotly/graph_objs/layout/_xaxis.py index 87ba1b0cec6..6a972cc493f 100644 --- a/plotly/graph_objs/layout/_xaxis.py +++ b/plotly/graph_objs/layout/_xaxis.py @@ -789,6 +789,10 @@ def rangeselector(self): Sets the specifications for each buttons. By default, a range selector comes with no buttons. + buttondefaults + plotly.graph_objs.layout.xaxis.rangeselector.Bu + tton instance or dict with compatible + properties font Sets the font of the range selector button text. @@ -1528,6 +1532,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.layout.xaxis.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.xaxis.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -2237,6 +2264,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.layout.xaxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.xaxis.Tickformatstop instance + or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -2345,6 +2375,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -2643,6 +2674,9 @@ def __init__( tickformatstops plotly.graph_objs.layout.xaxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.xaxis.Tickformatstop instance + or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -2783,6 +2817,8 @@ def __init__( self._validators['tickformat'] = v_xaxis.TickformatValidator() self._validators['tickformatstops' ] = v_xaxis.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_xaxis.TickformatstopValidator() self._validators['ticklen'] = v_xaxis.TicklenValidator() self._validators['tickmode'] = v_xaxis.TickmodeValidator() self._validators['tickprefix'] = v_xaxis.TickprefixValidator() @@ -2915,6 +2951,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/layout/_yaxis.py b/plotly/graph_objs/layout/_yaxis.py index 6dba7d7dc39..1d10bd33492 100644 --- a/plotly/graph_objs/layout/_yaxis.py +++ b/plotly/graph_objs/layout/_yaxis.py @@ -1407,6 +1407,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.layout.yaxis.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.yaxis.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -2110,6 +2133,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.layout.yaxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.yaxis.Tickformatstop instance + or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -2216,6 +2242,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -2508,6 +2535,9 @@ def __init__( tickformatstops plotly.graph_objs.layout.yaxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.yaxis.Tickformatstop instance + or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -2646,6 +2676,8 @@ def __init__( self._validators['tickformat'] = v_yaxis.TickformatValidator() self._validators['tickformatstops' ] = v_yaxis.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_yaxis.TickformatstopValidator() self._validators['ticklen'] = v_yaxis.TicklenValidator() self._validators['tickmode'] = v_yaxis.TickmodeValidator() self._validators['tickprefix'] = v_yaxis.TickprefixValidator() @@ -2773,6 +2805,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/layout/polar/_angularaxis.py b/plotly/graph_objs/layout/polar/_angularaxis.py index eb7d650f52d..b0a7ef0e484 100644 --- a/plotly/graph_objs/layout/polar/_angularaxis.py +++ b/plotly/graph_objs/layout/polar/_angularaxis.py @@ -922,6 +922,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.layout.polar.angularaxis.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.polar.angularaxis.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1353,6 +1376,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.layout.polar.angularaxis.Tickformatst op instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.polar.angularaxis.Tickformatst + op instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1430,6 +1456,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1612,6 +1639,9 @@ def __init__( tickformatstops plotly.graph_objs.layout.polar.angularaxis.Tickformatst op instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.polar.angularaxis.Tickformatst + op instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1729,6 +1759,8 @@ def __init__( self._validators['tickformat'] = v_angularaxis.TickformatValidator() self._validators['tickformatstops' ] = v_angularaxis.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_angularaxis.TickformatstopValidator() self._validators['ticklen'] = v_angularaxis.TicklenValidator() self._validators['tickmode'] = v_angularaxis.TickmodeValidator() self._validators['tickprefix'] = v_angularaxis.TickprefixValidator() @@ -1813,6 +1845,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/layout/polar/_radialaxis.py b/plotly/graph_objs/layout/polar/_radialaxis.py index 059eaa64149..9512967b788 100644 --- a/plotly/graph_objs/layout/polar/_radialaxis.py +++ b/plotly/graph_objs/layout/polar/_radialaxis.py @@ -984,6 +984,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.layout.polar.radialaxis.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.polar.radialaxis.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1500,6 +1523,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.layout.polar.radialaxis.Tickformatsto p instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.polar.radialaxis.Tickformatsto + p instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1582,6 +1608,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1786,6 +1813,9 @@ def __init__( tickformatstops plotly.graph_objs.layout.polar.radialaxis.Tickformatsto p instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.polar.radialaxis.Tickformatsto + p instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1905,6 +1935,8 @@ def __init__( self._validators['tickformat'] = v_radialaxis.TickformatValidator() self._validators['tickformatstops' ] = v_radialaxis.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_radialaxis.TickformatstopValidator() self._validators['ticklen'] = v_radialaxis.TicklenValidator() self._validators['tickmode'] = v_radialaxis.TickmodeValidator() self._validators['tickprefix'] = v_radialaxis.TickprefixValidator() @@ -1995,6 +2027,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/layout/scene/_xaxis.py b/plotly/graph_objs/layout/scene/_xaxis.py index a6b7400491f..7a84fc1034f 100644 --- a/plotly/graph_objs/layout/scene/_xaxis.py +++ b/plotly/graph_objs/layout/scene/_xaxis.py @@ -1156,6 +1156,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.layout.scene.xaxis.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.scene.xaxis.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1782,6 +1805,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.layout.scene.xaxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.scene.xaxis.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1877,6 +1903,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -2092,6 +2119,9 @@ def __init__( tickformatstops plotly.graph_objs.layout.scene.xaxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.scene.xaxis.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -2219,6 +2249,8 @@ def __init__( self._validators['tickformat'] = v_xaxis.TickformatValidator() self._validators['tickformatstops' ] = v_xaxis.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_xaxis.TickformatstopValidator() self._validators['ticklen'] = v_xaxis.TicklenValidator() self._validators['tickmode'] = v_xaxis.TickmodeValidator() self._validators['tickprefix'] = v_xaxis.TickprefixValidator() @@ -2326,6 +2358,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/layout/scene/_yaxis.py b/plotly/graph_objs/layout/scene/_yaxis.py index dc07c68415b..2f235d8213f 100644 --- a/plotly/graph_objs/layout/scene/_yaxis.py +++ b/plotly/graph_objs/layout/scene/_yaxis.py @@ -1156,6 +1156,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.layout.scene.yaxis.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.scene.yaxis.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1782,6 +1805,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.layout.scene.yaxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.scene.yaxis.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1877,6 +1903,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -2092,6 +2119,9 @@ def __init__( tickformatstops plotly.graph_objs.layout.scene.yaxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.scene.yaxis.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -2219,6 +2249,8 @@ def __init__( self._validators['tickformat'] = v_yaxis.TickformatValidator() self._validators['tickformatstops' ] = v_yaxis.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_yaxis.TickformatstopValidator() self._validators['ticklen'] = v_yaxis.TicklenValidator() self._validators['tickmode'] = v_yaxis.TickmodeValidator() self._validators['tickprefix'] = v_yaxis.TickprefixValidator() @@ -2326,6 +2358,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/layout/scene/_zaxis.py b/plotly/graph_objs/layout/scene/_zaxis.py index c9c66be26ff..aa5879cc3fa 100644 --- a/plotly/graph_objs/layout/scene/_zaxis.py +++ b/plotly/graph_objs/layout/scene/_zaxis.py @@ -1156,6 +1156,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.layout.scene.zaxis.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.scene.zaxis.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1782,6 +1805,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.layout.scene.zaxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.scene.zaxis.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1877,6 +1903,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -2092,6 +2119,9 @@ def __init__( tickformatstops plotly.graph_objs.layout.scene.zaxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.scene.zaxis.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -2219,6 +2249,8 @@ def __init__( self._validators['tickformat'] = v_zaxis.TickformatValidator() self._validators['tickformatstops' ] = v_zaxis.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_zaxis.TickformatstopValidator() self._validators['ticklen'] = v_zaxis.TicklenValidator() self._validators['tickmode'] = v_zaxis.TickmodeValidator() self._validators['tickprefix'] = v_zaxis.TickprefixValidator() @@ -2326,6 +2358,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/layout/ternary/_aaxis.py b/plotly/graph_objs/layout/ternary/_aaxis.py index b5aa87d48f3..6596bc09a1f 100644 --- a/plotly/graph_objs/layout/ternary/_aaxis.py +++ b/plotly/graph_objs/layout/ternary/_aaxis.py @@ -779,6 +779,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.layout.ternary.aaxis.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.ternary.aaxis.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1199,6 +1222,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.layout.ternary.aaxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.ternary.aaxis.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1265,6 +1291,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1415,6 +1442,9 @@ def __init__( tickformatstops plotly.graph_objs.layout.ternary.aaxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.ternary.aaxis.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1511,6 +1541,8 @@ def __init__( self._validators['tickformat'] = v_aaxis.TickformatValidator() self._validators['tickformatstops' ] = v_aaxis.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_aaxis.TickformatstopValidator() self._validators['ticklen'] = v_aaxis.TicklenValidator() self._validators['tickmode'] = v_aaxis.TickmodeValidator() self._validators['tickprefix'] = v_aaxis.TickprefixValidator() @@ -1580,6 +1612,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/layout/ternary/_baxis.py b/plotly/graph_objs/layout/ternary/_baxis.py index b7eaa4c10cf..6dc282ab4f2 100644 --- a/plotly/graph_objs/layout/ternary/_baxis.py +++ b/plotly/graph_objs/layout/ternary/_baxis.py @@ -779,6 +779,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.layout.ternary.baxis.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.ternary.baxis.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1199,6 +1222,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.layout.ternary.baxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.ternary.baxis.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1265,6 +1291,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1415,6 +1442,9 @@ def __init__( tickformatstops plotly.graph_objs.layout.ternary.baxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.ternary.baxis.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1511,6 +1541,8 @@ def __init__( self._validators['tickformat'] = v_baxis.TickformatValidator() self._validators['tickformatstops' ] = v_baxis.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_baxis.TickformatstopValidator() self._validators['ticklen'] = v_baxis.TicklenValidator() self._validators['tickmode'] = v_baxis.TickmodeValidator() self._validators['tickprefix'] = v_baxis.TickprefixValidator() @@ -1580,6 +1612,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/layout/ternary/_caxis.py b/plotly/graph_objs/layout/ternary/_caxis.py index beb922028d2..5e544a45d28 100644 --- a/plotly/graph_objs/layout/ternary/_caxis.py +++ b/plotly/graph_objs/layout/ternary/_caxis.py @@ -779,6 +779,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.layout.ternary.caxis.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.ternary.caxis.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1199,6 +1222,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.layout.ternary.caxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.ternary.caxis.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1265,6 +1291,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1415,6 +1442,9 @@ def __init__( tickformatstops plotly.graph_objs.layout.ternary.caxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.ternary.caxis.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1511,6 +1541,8 @@ def __init__( self._validators['tickformat'] = v_caxis.TickformatValidator() self._validators['tickformatstops' ] = v_caxis.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_caxis.TickformatstopValidator() self._validators['ticklen'] = v_caxis.TicklenValidator() self._validators['tickmode'] = v_caxis.TickmodeValidator() self._validators['tickprefix'] = v_caxis.TickprefixValidator() @@ -1580,6 +1612,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/layout/xaxis/_rangeselector.py b/plotly/graph_objs/layout/xaxis/_rangeselector.py index 590d697c390..44482d3c18e 100644 --- a/plotly/graph_objs/layout/xaxis/_rangeselector.py +++ b/plotly/graph_objs/layout/xaxis/_rangeselector.py @@ -274,6 +274,29 @@ def buttons(self): def buttons(self, val): self['buttons'] = val + # buttondefaults + # -------------- + @property + def buttondefaults(self): + """ + The 'buttondefaults' property is an instance of Button + that may be specified as: + - An instance of plotly.graph_objs.layout.xaxis.rangeselector.Button + - A dict of string/value properties that will be passed + to the Button constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.layout.xaxis.rangeselector.Button + """ + return self['buttondefaults'] + + @buttondefaults.setter + def buttondefaults(self, val): + self['buttondefaults'] = val + # font # ---- @property @@ -455,6 +478,9 @@ def _prop_descriptions(self): buttons Sets the specifications for each buttons. By default, a range selector comes with no buttons. + buttondefaults + plotly.graph_objs.layout.xaxis.rangeselector.Button + instance or dict with compatible properties font Sets the font of the range selector button text. visible @@ -485,6 +511,7 @@ def __init__( bordercolor=None, borderwidth=None, buttons=None, + buttondefaults=None, font=None, visible=None, x=None, @@ -517,6 +544,9 @@ def __init__( buttons Sets the specifications for each buttons. By default, a range selector comes with no buttons. + buttondefaults + plotly.graph_objs.layout.xaxis.rangeselector.Button + instance or dict with compatible properties font Sets the font of the range selector button text. visible @@ -580,6 +610,7 @@ def __init__( self._validators['borderwidth' ] = v_rangeselector.BorderwidthValidator() self._validators['buttons'] = v_rangeselector.ButtonsValidator() + self._validators['buttondefaults'] = v_rangeselector.ButtonValidator() self._validators['font'] = v_rangeselector.FontValidator() self._validators['visible'] = v_rangeselector.VisibleValidator() self._validators['x'] = v_rangeselector.XValidator() @@ -599,6 +630,9 @@ def __init__( self['borderwidth'] = borderwidth if borderwidth is not None else _v _v = arg.pop('buttons', None) self['buttons'] = buttons if buttons is not None else _v + _v = arg.pop('buttondefaults', None) + self['buttondefaults' + ] = buttondefaults if buttondefaults is not None else _v _v = arg.pop('font', None) self['font'] = font if font is not None else _v _v = arg.pop('visible', None) diff --git a/plotly/graph_objs/mesh3d/_colorbar.py b/plotly/graph_objs/mesh3d/_colorbar.py index 81ab469ff7b..e6663efb292 100644 --- a/plotly/graph_objs/mesh3d/_colorbar.py +++ b/plotly/graph_objs/mesh3d/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.mesh3d.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.mesh3d.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.mesh3d.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.mesh3d.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1530,6 +1557,9 @@ def __init__( tickformatstops plotly.graph_objs.mesh3d.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.mesh3d.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1652,6 +1682,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1727,6 +1759,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/parcoords/_line.py b/plotly/graph_objs/parcoords/_line.py index b3acb0b41ee..25991403e57 100644 --- a/plotly/graph_objs/parcoords/_line.py +++ b/plotly/graph_objs/parcoords/_line.py @@ -306,6 +306,10 @@ def colorbar(self): plotly.graph_objs.parcoords.line.colorbar.Tickf ormatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.parcoords.line.colorbar.Tickf + ormatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/parcoords/line/_colorbar.py b/plotly/graph_objs/parcoords/line/_colorbar.py index 03baafc8872..ed2eaecbc85 100644 --- a/plotly/graph_objs/parcoords/line/_colorbar.py +++ b/plotly/graph_objs/parcoords/line/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.parcoords.line.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.parcoords.line.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.parcoords.line.colorbar.Tickformatsto p instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.parcoords.line.colorbar.Tickformatsto + p instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1531,6 +1558,9 @@ def __init__( tickformatstops plotly.graph_objs.parcoords.line.colorbar.Tickformatsto p instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.parcoords.line.colorbar.Tickformatsto + p instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1653,6 +1683,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1728,6 +1760,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/scatter/_marker.py b/plotly/graph_objs/scatter/_marker.py index 9a36e3af089..9109d1f4d25 100644 --- a/plotly/graph_objs/scatter/_marker.py +++ b/plotly/graph_objs/scatter/_marker.py @@ -307,6 +307,10 @@ def colorbar(self): plotly.graph_objs.scatter.marker.colorbar.Tickf ormatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scatter.marker.colorbar.Tickf + ormatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scatter/marker/_colorbar.py b/plotly/graph_objs/scatter/marker/_colorbar.py index 22945008cd6..e7b0371f1c0 100644 --- a/plotly/graph_objs/scatter/marker/_colorbar.py +++ b/plotly/graph_objs/scatter/marker/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.scatter.marker.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.scatter.marker.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.scatter.marker.colorbar.Tickformatsto p instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scatter.marker.colorbar.Tickformatsto + p instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1531,6 +1558,9 @@ def __init__( tickformatstops plotly.graph_objs.scatter.marker.colorbar.Tickformatsto p instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scatter.marker.colorbar.Tickformatsto + p instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1653,6 +1683,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1728,6 +1760,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/scatter3d/_marker.py b/plotly/graph_objs/scatter3d/_marker.py index 1f374b6705e..b4f9fd0d458 100644 --- a/plotly/graph_objs/scatter3d/_marker.py +++ b/plotly/graph_objs/scatter3d/_marker.py @@ -307,6 +307,10 @@ def colorbar(self): plotly.graph_objs.scatter3d.marker.colorbar.Tic kformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scatter3d.marker.colorbar.Tic + kformatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scatter3d/marker/_colorbar.py b/plotly/graph_objs/scatter3d/marker/_colorbar.py index c34822f1e73..005c1369040 100644 --- a/plotly/graph_objs/scatter3d/marker/_colorbar.py +++ b/plotly/graph_objs/scatter3d/marker/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.scatter3d.marker.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.scatter3d.marker.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.scatter3d.marker.colorbar.Tickformats top instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scatter3d.marker.colorbar.Tickformats + top instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1531,6 +1558,9 @@ def __init__( tickformatstops plotly.graph_objs.scatter3d.marker.colorbar.Tickformats top instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scatter3d.marker.colorbar.Tickformats + top instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1653,6 +1683,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1728,6 +1760,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/scattercarpet/_marker.py b/plotly/graph_objs/scattercarpet/_marker.py index 0dcf2797415..3375fd91c75 100644 --- a/plotly/graph_objs/scattercarpet/_marker.py +++ b/plotly/graph_objs/scattercarpet/_marker.py @@ -307,6 +307,10 @@ def colorbar(self): plotly.graph_objs.scattercarpet.marker.colorbar .Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scattercarpet.marker.colorbar + .Tickformatstop instance or dict with + compatible properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scattercarpet/marker/_colorbar.py b/plotly/graph_objs/scattercarpet/marker/_colorbar.py index 87303ce2055..dd21307ee6a 100644 --- a/plotly/graph_objs/scattercarpet/marker/_colorbar.py +++ b/plotly/graph_objs/scattercarpet/marker/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.scattercarpet.marker.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.scattercarpet.marker.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.scattercarpet.marker.colorbar.Tickfor matstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scattercarpet.marker.colorbar.Tickfor + matstop instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1531,6 +1558,9 @@ def __init__( tickformatstops plotly.graph_objs.scattercarpet.marker.colorbar.Tickfor matstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scattercarpet.marker.colorbar.Tickfor + matstop instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1655,6 +1685,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1730,6 +1762,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/scattergeo/_marker.py b/plotly/graph_objs/scattergeo/_marker.py index 76fbe614261..5870b4f9626 100644 --- a/plotly/graph_objs/scattergeo/_marker.py +++ b/plotly/graph_objs/scattergeo/_marker.py @@ -307,6 +307,10 @@ def colorbar(self): plotly.graph_objs.scattergeo.marker.colorbar.Ti ckformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scattergeo.marker.colorbar.Ti + ckformatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scattergeo/marker/_colorbar.py b/plotly/graph_objs/scattergeo/marker/_colorbar.py index 442a13001e9..4681a83f6e6 100644 --- a/plotly/graph_objs/scattergeo/marker/_colorbar.py +++ b/plotly/graph_objs/scattergeo/marker/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.scattergeo.marker.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.scattergeo.marker.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.scattergeo.marker.colorbar.Tickformat stop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scattergeo.marker.colorbar.Tickformat + stop instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1531,6 +1558,9 @@ def __init__( tickformatstops plotly.graph_objs.scattergeo.marker.colorbar.Tickformat stop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scattergeo.marker.colorbar.Tickformat + stop instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1655,6 +1685,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1730,6 +1762,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/scattergl/_marker.py b/plotly/graph_objs/scattergl/_marker.py index f2b757a0568..b8e1c0e4bd9 100644 --- a/plotly/graph_objs/scattergl/_marker.py +++ b/plotly/graph_objs/scattergl/_marker.py @@ -307,6 +307,10 @@ def colorbar(self): plotly.graph_objs.scattergl.marker.colorbar.Tic kformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scattergl.marker.colorbar.Tic + kformatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scattergl/marker/_colorbar.py b/plotly/graph_objs/scattergl/marker/_colorbar.py index 5ea81bfdcdf..54400bd9028 100644 --- a/plotly/graph_objs/scattergl/marker/_colorbar.py +++ b/plotly/graph_objs/scattergl/marker/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.scattergl.marker.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.scattergl.marker.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.scattergl.marker.colorbar.Tickformats top instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scattergl.marker.colorbar.Tickformats + top instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1531,6 +1558,9 @@ def __init__( tickformatstops plotly.graph_objs.scattergl.marker.colorbar.Tickformats top instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scattergl.marker.colorbar.Tickformats + top instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1653,6 +1683,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1728,6 +1760,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/scattermapbox/_marker.py b/plotly/graph_objs/scattermapbox/_marker.py index 3fb8421766c..a0fcc1586b5 100644 --- a/plotly/graph_objs/scattermapbox/_marker.py +++ b/plotly/graph_objs/scattermapbox/_marker.py @@ -307,6 +307,10 @@ def colorbar(self): plotly.graph_objs.scattermapbox.marker.colorbar .Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scattermapbox.marker.colorbar + .Tickformatstop instance or dict with + compatible properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scattermapbox/marker/_colorbar.py b/plotly/graph_objs/scattermapbox/marker/_colorbar.py index b1af8018ed7..62fe5ebce3d 100644 --- a/plotly/graph_objs/scattermapbox/marker/_colorbar.py +++ b/plotly/graph_objs/scattermapbox/marker/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.scattermapbox.marker.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.scattermapbox.marker.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.scattermapbox.marker.colorbar.Tickfor matstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scattermapbox.marker.colorbar.Tickfor + matstop instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1531,6 +1558,9 @@ def __init__( tickformatstops plotly.graph_objs.scattermapbox.marker.colorbar.Tickfor matstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scattermapbox.marker.colorbar.Tickfor + matstop instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1655,6 +1685,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1730,6 +1762,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/scatterpolar/_marker.py b/plotly/graph_objs/scatterpolar/_marker.py index 626d3bf34a2..c28d515cdf2 100644 --- a/plotly/graph_objs/scatterpolar/_marker.py +++ b/plotly/graph_objs/scatterpolar/_marker.py @@ -307,6 +307,10 @@ def colorbar(self): plotly.graph_objs.scatterpolar.marker.colorbar. Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scatterpolar.marker.colorbar. + Tickformatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scatterpolar/marker/_colorbar.py b/plotly/graph_objs/scatterpolar/marker/_colorbar.py index 95bfc5ce33d..30169608ad1 100644 --- a/plotly/graph_objs/scatterpolar/marker/_colorbar.py +++ b/plotly/graph_objs/scatterpolar/marker/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.scatterpolar.marker.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.scatterpolar.marker.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.scatterpolar.marker.colorbar.Tickform atstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scatterpolar.marker.colorbar.Tickform + atstop instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1531,6 +1558,9 @@ def __init__( tickformatstops plotly.graph_objs.scatterpolar.marker.colorbar.Tickform atstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scatterpolar.marker.colorbar.Tickform + atstop instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1655,6 +1685,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1730,6 +1762,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/scatterpolargl/_marker.py b/plotly/graph_objs/scatterpolargl/_marker.py index b2a26cf9269..1668aa36971 100644 --- a/plotly/graph_objs/scatterpolargl/_marker.py +++ b/plotly/graph_objs/scatterpolargl/_marker.py @@ -307,6 +307,10 @@ def colorbar(self): plotly.graph_objs.scatterpolargl.marker.colorba r.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scatterpolargl.marker.colorba + r.Tickformatstop instance or dict with + compatible properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scatterpolargl/marker/_colorbar.py b/plotly/graph_objs/scatterpolargl/marker/_colorbar.py index 6999786bf2c..1e45fd82f6d 100644 --- a/plotly/graph_objs/scatterpolargl/marker/_colorbar.py +++ b/plotly/graph_objs/scatterpolargl/marker/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.scatterpolargl.marker.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.scatterpolargl.marker.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.scatterpolargl.marker.colorbar.Tickfo rmatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scatterpolargl.marker.colorbar.Tickfo + rmatstop instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1531,6 +1558,9 @@ def __init__( tickformatstops plotly.graph_objs.scatterpolargl.marker.colorbar.Tickfo rmatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scatterpolargl.marker.colorbar.Tickfo + rmatstop instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1655,6 +1685,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1730,6 +1762,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/scatterternary/_marker.py b/plotly/graph_objs/scatterternary/_marker.py index bea2b8dcc84..04ddeec8911 100644 --- a/plotly/graph_objs/scatterternary/_marker.py +++ b/plotly/graph_objs/scatterternary/_marker.py @@ -307,6 +307,10 @@ def colorbar(self): plotly.graph_objs.scatterternary.marker.colorba r.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scatterternary.marker.colorba + r.Tickformatstop instance or dict with + compatible properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scatterternary/marker/_colorbar.py b/plotly/graph_objs/scatterternary/marker/_colorbar.py index ac3d97e2b3e..fbb6b50f659 100644 --- a/plotly/graph_objs/scatterternary/marker/_colorbar.py +++ b/plotly/graph_objs/scatterternary/marker/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.scatterternary.marker.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.scatterternary.marker.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.scatterternary.marker.colorbar.Tickfo rmatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scatterternary.marker.colorbar.Tickfo + rmatstop instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1531,6 +1558,9 @@ def __init__( tickformatstops plotly.graph_objs.scatterternary.marker.colorbar.Tickfo rmatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scatterternary.marker.colorbar.Tickfo + rmatstop instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1655,6 +1685,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1730,6 +1762,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/splom/_marker.py b/plotly/graph_objs/splom/_marker.py index c54c4b6a992..2735b3ac4fe 100644 --- a/plotly/graph_objs/splom/_marker.py +++ b/plotly/graph_objs/splom/_marker.py @@ -307,6 +307,10 @@ def colorbar(self): plotly.graph_objs.splom.marker.colorbar.Tickfor matstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.splom.marker.colorbar.Tickfor + matstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/splom/marker/_colorbar.py b/plotly/graph_objs/splom/marker/_colorbar.py index fae03f9b495..f90e2823ab2 100644 --- a/plotly/graph_objs/splom/marker/_colorbar.py +++ b/plotly/graph_objs/splom/marker/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.splom.marker.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.splom.marker.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.splom.marker.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.splom.marker.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1530,6 +1557,9 @@ def __init__( tickformatstops plotly.graph_objs.splom.marker.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.splom.marker.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1652,6 +1682,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1727,6 +1759,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/streamtube/_colorbar.py b/plotly/graph_objs/streamtube/_colorbar.py index 1c38e83de61..eceb84f59d0 100644 --- a/plotly/graph_objs/streamtube/_colorbar.py +++ b/plotly/graph_objs/streamtube/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.streamtube.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.streamtube.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.streamtube.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.streamtube.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1530,6 +1557,9 @@ def __init__( tickformatstops plotly.graph_objs.streamtube.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.streamtube.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1652,6 +1682,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1727,6 +1759,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/graph_objs/surface/_colorbar.py b/plotly/graph_objs/surface/_colorbar.py index d8c4f964dc4..662257d4686 100644 --- a/plotly/graph_objs/surface/_colorbar.py +++ b/plotly/graph_objs/surface/_colorbar.py @@ -747,6 +747,29 @@ def tickformatstops(self): def tickformatstops(self, val): self['tickformatstops'] = val + # tickformatstopdefaults + # ---------------------- + @property + def tickformatstopdefaults(self): + """ + The 'tickformatstopdefaults' property is an instance of Tickformatstop + that may be specified as: + - An instance of plotly.graph_objs.surface.colorbar.Tickformatstop + - A dict of string/value properties that will be passed + to the Tickformatstop constructor + + Supported dict properties: + + Returns + ------- + plotly.graph_objs.surface.colorbar.Tickformatstop + """ + return self['tickformatstopdefaults'] + + @tickformatstopdefaults.setter + def tickformatstopdefaults(self, val): + self['tickformatstopdefaults'] = val + # ticklen # ------- @property @@ -1300,6 +1323,9 @@ def _prop_descriptions(self): tickformatstops plotly.graph_objs.surface.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.surface.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1388,6 +1414,7 @@ def __init__( tickfont=None, tickformat=None, tickformatstops=None, + tickformatstopdefaults=None, ticklen=None, tickmode=None, tickprefix=None, @@ -1530,6 +1557,9 @@ def __init__( tickformatstops plotly.graph_objs.surface.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.surface.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode @@ -1652,6 +1682,8 @@ def __init__( self._validators['tickformat'] = v_colorbar.TickformatValidator() self._validators['tickformatstops' ] = v_colorbar.TickformatstopsValidator() + self._validators['tickformatstopdefaults' + ] = v_colorbar.TickformatstopValidator() self._validators['ticklen'] = v_colorbar.TicklenValidator() self._validators['tickmode'] = v_colorbar.TickmodeValidator() self._validators['tickprefix'] = v_colorbar.TickprefixValidator() @@ -1727,6 +1759,10 @@ def __init__( _v = arg.pop('tickformatstops', None) self['tickformatstops' ] = tickformatstops if tickformatstops is not None else _v + _v = arg.pop('tickformatstopdefaults', None) + self[ + 'tickformatstopdefaults' + ] = tickformatstopdefaults if tickformatstopdefaults is not None else _v _v = arg.pop('ticklen', None) self['ticklen'] = ticklen if ticklen is not None else _v _v = arg.pop('tickmode', None) diff --git a/plotly/validators/_layout.py b/plotly/validators/_layout.py index fb6e53a1675..e9ba7f47274 100644 --- a/plotly/validators/_layout.py +++ b/plotly/validators/_layout.py @@ -16,6 +16,9 @@ def __init__(self, plotly_name='layout', parent_name='', **kwargs): annotations plotly.graph_objs.layout.Annotation instance or dict with compatible properties + annotationdefaults + plotly.graph_objs.layout.Annotation instance or + dict with compatible properties autosize Determines whether or not a layout width or height that has been left undefined by the user @@ -166,6 +169,9 @@ def __init__(self, plotly_name='layout', parent_name='', **kwargs): images plotly.graph_objs.layout.Image instance or dict with compatible properties + imagedefaults + plotly.graph_objs.layout.Image instance or dict + with compatible properties legend plotly.graph_objs.layout.Legend instance or dict with compatible properties @@ -216,6 +222,9 @@ def __init__(self, plotly_name='layout', parent_name='', **kwargs): shapes plotly.graph_objs.layout.Shape instance or dict with compatible properties + shapedefaults + plotly.graph_objs.layout.Shape instance or dict + with compatible properties showlegend Determines whether or not a legend is drawn. Default is `true` if there is a trace to show @@ -226,6 +235,9 @@ def __init__(self, plotly_name='layout', parent_name='', **kwargs): sliders plotly.graph_objs.layout.Slider instance or dict with compatible properties + sliderdefaults + plotly.graph_objs.layout.Slider instance or + dict with compatible properties spikedistance Sets the default distance (in pixels) to look for data to draw spikelines to (-1 means no @@ -247,6 +259,9 @@ def __init__(self, plotly_name='layout', parent_name='', **kwargs): updatemenus plotly.graph_objs.layout.Updatemenu instance or dict with compatible properties + updatemenudefaults + plotly.graph_objs.layout.Updatemenu instance or + dict with compatible properties violingap Sets the gap (in plot fraction) between violins of adjacent location coordinates. diff --git a/plotly/validators/_parcoords.py b/plotly/validators/_parcoords.py index 0bfbd94e4aa..6fdedff5c32 100644 --- a/plotly/validators/_parcoords.py +++ b/plotly/validators/_parcoords.py @@ -23,6 +23,9 @@ def __init__(self, plotly_name='parcoords', parent_name='', **kwargs): The dimensions (variables) of the parallel coordinates chart. 2..60 dimensions are supported. + dimensiondefaults + plotly.graph_objs.parcoords.Dimension instance + or dict with compatible properties domain plotly.graph_objs.parcoords.Domain instance or dict with compatible properties diff --git a/plotly/validators/_splom.py b/plotly/validators/_splom.py index 02d400304f4..1773c6aeaa3 100644 --- a/plotly/validators/_splom.py +++ b/plotly/validators/_splom.py @@ -25,6 +25,9 @@ def __init__(self, plotly_name='splom', parent_name='', **kwargs): dimensions plotly.graph_objs.splom.Dimension instance or dict with compatible properties + dimensiondefaults + plotly.graph_objs.splom.Dimension instance or + dict with compatible properties hoverinfo Determines which trace information appear on hover. If `none` or `skip` are set, no diff --git a/plotly/validators/bar/marker/_colorbar.py b/plotly/validators/bar/marker/_colorbar.py index 561631e4fdf..2597b97eb04 100644 --- a/plotly/validators/bar/marker/_colorbar.py +++ b/plotly/validators/bar/marker/_colorbar.py @@ -140,6 +140,10 @@ def __init__( plotly.graph_objs.bar.marker.colorbar.Tickforma tstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.bar.marker.colorbar.Tickforma + tstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/bar/marker/colorbar/__init__.py b/plotly/validators/bar/marker/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/bar/marker/colorbar/__init__.py +++ b/plotly/validators/bar/marker/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/bar/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/bar/marker/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..dd2cd157a69 --- /dev/null +++ b/plotly/validators/bar/marker/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='bar.marker.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/barpolar/marker/_colorbar.py b/plotly/validators/barpolar/marker/_colorbar.py index 4debe96c3ad..846be86b20f 100644 --- a/plotly/validators/barpolar/marker/_colorbar.py +++ b/plotly/validators/barpolar/marker/_colorbar.py @@ -140,6 +140,10 @@ def __init__( plotly.graph_objs.barpolar.marker.colorbar.Tick formatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.barpolar.marker.colorbar.Tick + formatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/barpolar/marker/colorbar/__init__.py b/plotly/validators/barpolar/marker/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/barpolar/marker/colorbar/__init__.py +++ b/plotly/validators/barpolar/marker/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/barpolar/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/barpolar/marker/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..8105fedf1c6 --- /dev/null +++ b/plotly/validators/barpolar/marker/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='barpolar.marker.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/carpet/_aaxis.py b/plotly/validators/carpet/_aaxis.py index 6a9d2647ed8..6fb7f08cd95 100644 --- a/plotly/validators/carpet/_aaxis.py +++ b/plotly/validators/carpet/_aaxis.py @@ -176,6 +176,9 @@ def __init__(self, plotly_name='aaxis', parent_name='carpet', **kwargs): tickformatstops plotly.graph_objs.carpet.aaxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.carpet.aaxis.Tickformatstop + instance or dict with compatible properties tickmode tickprefix diff --git a/plotly/validators/carpet/_baxis.py b/plotly/validators/carpet/_baxis.py index 798e611e1be..fa16f60691c 100644 --- a/plotly/validators/carpet/_baxis.py +++ b/plotly/validators/carpet/_baxis.py @@ -176,6 +176,9 @@ def __init__(self, plotly_name='baxis', parent_name='carpet', **kwargs): tickformatstops plotly.graph_objs.carpet.baxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.carpet.baxis.Tickformatstop + instance or dict with compatible properties tickmode tickprefix diff --git a/plotly/validators/carpet/aaxis/__init__.py b/plotly/validators/carpet/aaxis/__init__.py index 40cab15907e..0d2a8a912e2 100644 --- a/plotly/validators/carpet/aaxis/__init__.py +++ b/plotly/validators/carpet/aaxis/__init__.py @@ -9,6 +9,7 @@ from ._ticksuffix import TicksuffixValidator from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/carpet/aaxis/_tickformatstopdefaults.py b/plotly/validators/carpet/aaxis/_tickformatstopdefaults.py new file mode 100644 index 00000000000..517d3fc4f6e --- /dev/null +++ b/plotly/validators/carpet/aaxis/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='carpet.aaxis', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/carpet/baxis/__init__.py b/plotly/validators/carpet/baxis/__init__.py index 40cab15907e..0d2a8a912e2 100644 --- a/plotly/validators/carpet/baxis/__init__.py +++ b/plotly/validators/carpet/baxis/__init__.py @@ -9,6 +9,7 @@ from ._ticksuffix import TicksuffixValidator from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/carpet/baxis/_tickformatstopdefaults.py b/plotly/validators/carpet/baxis/_tickformatstopdefaults.py new file mode 100644 index 00000000000..755c66c46b2 --- /dev/null +++ b/plotly/validators/carpet/baxis/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='carpet.baxis', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/choropleth/_colorbar.py b/plotly/validators/choropleth/_colorbar.py index 56dae5c1176..1e784af2c85 100644 --- a/plotly/validators/choropleth/_colorbar.py +++ b/plotly/validators/choropleth/_colorbar.py @@ -140,6 +140,10 @@ def __init__( plotly.graph_objs.choropleth.colorbar.Tickforma tstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.choropleth.colorbar.Tickforma + tstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/choropleth/colorbar/__init__.py b/plotly/validators/choropleth/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/choropleth/colorbar/__init__.py +++ b/plotly/validators/choropleth/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/choropleth/colorbar/_tickformatstopdefaults.py b/plotly/validators/choropleth/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..7e76ceefb67 --- /dev/null +++ b/plotly/validators/choropleth/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='choropleth.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/cone/_colorbar.py b/plotly/validators/cone/_colorbar.py index 38b33db2894..cd2d6e407e0 100644 --- a/plotly/validators/cone/_colorbar.py +++ b/plotly/validators/cone/_colorbar.py @@ -137,6 +137,9 @@ def __init__(self, plotly_name='colorbar', parent_name='cone', **kwargs): tickformatstops plotly.graph_objs.cone.colorbar.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.cone.colorbar.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/cone/colorbar/__init__.py b/plotly/validators/cone/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/cone/colorbar/__init__.py +++ b/plotly/validators/cone/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/cone/colorbar/_tickformatstopdefaults.py b/plotly/validators/cone/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..c6899b55e3a --- /dev/null +++ b/plotly/validators/cone/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='cone.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/contour/_colorbar.py b/plotly/validators/contour/_colorbar.py index f362222836b..9ca12434105 100644 --- a/plotly/validators/contour/_colorbar.py +++ b/plotly/validators/contour/_colorbar.py @@ -139,6 +139,9 @@ def __init__( tickformatstops plotly.graph_objs.contour.colorbar.Tickformatst op instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.contour.colorbar.Tickformatst + op instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/contour/colorbar/__init__.py b/plotly/validators/contour/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/contour/colorbar/__init__.py +++ b/plotly/validators/contour/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/contour/colorbar/_tickformatstopdefaults.py b/plotly/validators/contour/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..5b4480fa5de --- /dev/null +++ b/plotly/validators/contour/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='contour.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/contourcarpet/_colorbar.py b/plotly/validators/contourcarpet/_colorbar.py index bddb856cb0a..dba42d068c0 100644 --- a/plotly/validators/contourcarpet/_colorbar.py +++ b/plotly/validators/contourcarpet/_colorbar.py @@ -140,6 +140,10 @@ def __init__( plotly.graph_objs.contourcarpet.colorbar.Tickfo rmatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.contourcarpet.colorbar.Tickfo + rmatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/contourcarpet/colorbar/__init__.py b/plotly/validators/contourcarpet/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/contourcarpet/colorbar/__init__.py +++ b/plotly/validators/contourcarpet/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/contourcarpet/colorbar/_tickformatstopdefaults.py b/plotly/validators/contourcarpet/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..9a73310453e --- /dev/null +++ b/plotly/validators/contourcarpet/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='contourcarpet.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/heatmap/_colorbar.py b/plotly/validators/heatmap/_colorbar.py index 78a98a77750..0d71d660c97 100644 --- a/plotly/validators/heatmap/_colorbar.py +++ b/plotly/validators/heatmap/_colorbar.py @@ -139,6 +139,9 @@ def __init__( tickformatstops plotly.graph_objs.heatmap.colorbar.Tickformatst op instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.heatmap.colorbar.Tickformatst + op instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/heatmap/colorbar/__init__.py b/plotly/validators/heatmap/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/heatmap/colorbar/__init__.py +++ b/plotly/validators/heatmap/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/heatmap/colorbar/_tickformatstopdefaults.py b/plotly/validators/heatmap/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..559a3739b03 --- /dev/null +++ b/plotly/validators/heatmap/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='heatmap.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/heatmapgl/_colorbar.py b/plotly/validators/heatmapgl/_colorbar.py index dd795866c08..0092cc6da7f 100644 --- a/plotly/validators/heatmapgl/_colorbar.py +++ b/plotly/validators/heatmapgl/_colorbar.py @@ -140,6 +140,10 @@ def __init__( plotly.graph_objs.heatmapgl.colorbar.Tickformat stop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.heatmapgl.colorbar.Tickformat + stop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/heatmapgl/colorbar/__init__.py b/plotly/validators/heatmapgl/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/heatmapgl/colorbar/__init__.py +++ b/plotly/validators/heatmapgl/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/heatmapgl/colorbar/_tickformatstopdefaults.py b/plotly/validators/heatmapgl/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..026bfd1ed12 --- /dev/null +++ b/plotly/validators/heatmapgl/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='heatmapgl.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/histogram/marker/_colorbar.py b/plotly/validators/histogram/marker/_colorbar.py index 1f7c21405e5..167c0e822e9 100644 --- a/plotly/validators/histogram/marker/_colorbar.py +++ b/plotly/validators/histogram/marker/_colorbar.py @@ -140,6 +140,10 @@ def __init__( plotly.graph_objs.histogram.marker.colorbar.Tic kformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.histogram.marker.colorbar.Tic + kformatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/histogram/marker/colorbar/__init__.py b/plotly/validators/histogram/marker/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/histogram/marker/colorbar/__init__.py +++ b/plotly/validators/histogram/marker/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/histogram/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/histogram/marker/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..acd068fc127 --- /dev/null +++ b/plotly/validators/histogram/marker/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='histogram.marker.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/histogram2d/_colorbar.py b/plotly/validators/histogram2d/_colorbar.py index 6e63356c3cb..2df365f3849 100644 --- a/plotly/validators/histogram2d/_colorbar.py +++ b/plotly/validators/histogram2d/_colorbar.py @@ -140,6 +140,10 @@ def __init__( plotly.graph_objs.histogram2d.colorbar.Tickform atstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.histogram2d.colorbar.Tickform + atstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/histogram2d/colorbar/__init__.py b/plotly/validators/histogram2d/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/histogram2d/colorbar/__init__.py +++ b/plotly/validators/histogram2d/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/histogram2d/colorbar/_tickformatstopdefaults.py b/plotly/validators/histogram2d/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..7ef78eb924d --- /dev/null +++ b/plotly/validators/histogram2d/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='histogram2d.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/histogram2dcontour/_colorbar.py b/plotly/validators/histogram2dcontour/_colorbar.py index b48eb3d3f5f..59e5b06740c 100644 --- a/plotly/validators/histogram2dcontour/_colorbar.py +++ b/plotly/validators/histogram2dcontour/_colorbar.py @@ -143,6 +143,10 @@ def __init__( plotly.graph_objs.histogram2dcontour.colorbar.T ickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.histogram2dcontour.colorbar.T + ickformatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/histogram2dcontour/colorbar/__init__.py b/plotly/validators/histogram2dcontour/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/histogram2dcontour/colorbar/__init__.py +++ b/plotly/validators/histogram2dcontour/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/histogram2dcontour/colorbar/_tickformatstopdefaults.py b/plotly/validators/histogram2dcontour/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..e81f516dacc --- /dev/null +++ b/plotly/validators/histogram2dcontour/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='histogram2dcontour.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/__init__.py b/plotly/validators/layout/__init__.py index 265fc76bc0d..6076289e27c 100644 --- a/plotly/validators/layout/__init__.py +++ b/plotly/validators/layout/__init__.py @@ -4,14 +4,17 @@ from ._violinmode import ViolinmodeValidator from ._violingroupgap import ViolingroupgapValidator from ._violingap import ViolingapValidator +from ._updatemenudefaults import UpdatemenuValidator from ._updatemenus import UpdatemenusValidator from ._titlefont import TitlefontValidator from ._title import TitleValidator from ._ternary import TernaryValidator from ._template import TemplateValidator from ._spikedistance import SpikedistanceValidator +from ._sliderdefaults import SliderValidator from ._sliders import SlidersValidator from ._showlegend import ShowlegendValidator +from ._shapedefaults import ShapeValidator from ._shapes import ShapesValidator from ._separators import SeparatorsValidator from ._selectdirection import SelectdirectionValidator @@ -25,6 +28,7 @@ from ._margin import MarginValidator from ._mapbox import MapboxValidator from ._legend import LegendValidator +from ._imagedefaults import ImageValidator from ._images import ImagesValidator from ._hovermode import HovermodeValidator from ._hoverlabel import HoverlabelValidator @@ -51,5 +55,6 @@ from ._bargroupgap import BargroupgapValidator from ._bargap import BargapValidator from ._autosize import AutosizeValidator +from ._annotationdefaults import AnnotationValidator from ._annotations import AnnotationsValidator from ._angularaxis import AngularAxisValidator diff --git a/plotly/validators/layout/_annotationdefaults.py b/plotly/validators/layout/_annotationdefaults.py new file mode 100644 index 00000000000..4d5680a395f --- /dev/null +++ b/plotly/validators/layout/_annotationdefaults.py @@ -0,0 +1,16 @@ +import _plotly_utils.basevalidators + + +class AnnotationValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, plotly_name='annotationdefaults', parent_name='layout', **kwargs + ): + super(AnnotationValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Annotation'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/_imagedefaults.py b/plotly/validators/layout/_imagedefaults.py new file mode 100644 index 00000000000..e9bf8128944 --- /dev/null +++ b/plotly/validators/layout/_imagedefaults.py @@ -0,0 +1,16 @@ +import _plotly_utils.basevalidators + + +class ImageValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, plotly_name='imagedefaults', parent_name='layout', **kwargs + ): + super(ImageValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Image'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/_mapbox.py b/plotly/validators/layout/_mapbox.py index f836e63ab94..5cc394a1013 100644 --- a/plotly/validators/layout/_mapbox.py +++ b/plotly/validators/layout/_mapbox.py @@ -27,6 +27,9 @@ def __init__(self, plotly_name='mapbox', parent_name='layout', **kwargs): layers plotly.graph_objs.layout.mapbox.Layer instance or dict with compatible properties + layerdefaults + plotly.graph_objs.layout.mapbox.Layer instance + or dict with compatible properties pitch Sets the pitch angle of the map (in degrees, where 0 means perpendicular to the surface of diff --git a/plotly/validators/layout/_scene.py b/plotly/validators/layout/_scene.py index 8852c47562b..76d94fa98ba 100644 --- a/plotly/validators/layout/_scene.py +++ b/plotly/validators/layout/_scene.py @@ -13,6 +13,9 @@ def __init__(self, plotly_name='scene', parent_name='layout', **kwargs): annotations plotly.graph_objs.layout.scene.Annotation instance or dict with compatible properties + annotationdefaults + plotly.graph_objs.layout.scene.Annotation + instance or dict with compatible properties aspectmode If "cube", this scene's axes are drawn as a cube, regardless of the axes' ranges. If diff --git a/plotly/validators/layout/_shapedefaults.py b/plotly/validators/layout/_shapedefaults.py new file mode 100644 index 00000000000..05185137b47 --- /dev/null +++ b/plotly/validators/layout/_shapedefaults.py @@ -0,0 +1,16 @@ +import _plotly_utils.basevalidators + + +class ShapeValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, plotly_name='shapedefaults', parent_name='layout', **kwargs + ): + super(ShapeValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Shape'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/_sliderdefaults.py b/plotly/validators/layout/_sliderdefaults.py new file mode 100644 index 00000000000..76cef00d805 --- /dev/null +++ b/plotly/validators/layout/_sliderdefaults.py @@ -0,0 +1,16 @@ +import _plotly_utils.basevalidators + + +class SliderValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, plotly_name='sliderdefaults', parent_name='layout', **kwargs + ): + super(SliderValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Slider'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/_sliders.py b/plotly/validators/layout/_sliders.py index f4b4fe8f262..d1361765fc7 100644 --- a/plotly/validators/layout/_sliders.py +++ b/plotly/validators/layout/_sliders.py @@ -57,6 +57,9 @@ def __init__(self, plotly_name='sliders', parent_name='layout', **kwargs): steps plotly.graph_objs.layout.slider.Step instance or dict with compatible properties + stepdefaults + plotly.graph_objs.layout.slider.Step instance + or dict with compatible properties templateitemname Used to refer to a named item in this array in the template. Named items from the template diff --git a/plotly/validators/layout/_updatemenudefaults.py b/plotly/validators/layout/_updatemenudefaults.py new file mode 100644 index 00000000000..95a0878c069 --- /dev/null +++ b/plotly/validators/layout/_updatemenudefaults.py @@ -0,0 +1,16 @@ +import _plotly_utils.basevalidators + + +class UpdatemenuValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, plotly_name='updatemenudefaults', parent_name='layout', **kwargs + ): + super(UpdatemenuValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Updatemenu'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/_updatemenus.py b/plotly/validators/layout/_updatemenus.py index ee0e5fcb1e6..9d9b634144d 100644 --- a/plotly/validators/layout/_updatemenus.py +++ b/plotly/validators/layout/_updatemenus.py @@ -29,6 +29,9 @@ def __init__( buttons plotly.graph_objs.layout.updatemenu.Button instance or dict with compatible properties + buttondefaults + plotly.graph_objs.layout.updatemenu.Button + instance or dict with compatible properties direction Determines the direction in which the buttons are laid out, whether in a dropdown menu or a diff --git a/plotly/validators/layout/_xaxis.py b/plotly/validators/layout/_xaxis.py index 55567d81650..ff124062943 100644 --- a/plotly/validators/layout/_xaxis.py +++ b/plotly/validators/layout/_xaxis.py @@ -313,6 +313,9 @@ def __init__(self, plotly_name='xaxis', parent_name='layout', **kwargs): tickformatstops plotly.graph_objs.layout.xaxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.xaxis.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/_yaxis.py b/plotly/validators/layout/_yaxis.py index 1920d096182..12f2d7c223c 100644 --- a/plotly/validators/layout/_yaxis.py +++ b/plotly/validators/layout/_yaxis.py @@ -307,6 +307,9 @@ def __init__(self, plotly_name='yaxis', parent_name='layout', **kwargs): tickformatstops plotly.graph_objs.layout.yaxis.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.yaxis.Tickformatstop + instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/mapbox/__init__.py b/plotly/validators/layout/mapbox/__init__.py index dbf4ef83e5f..0831abdeff4 100644 --- a/plotly/validators/layout/mapbox/__init__.py +++ b/plotly/validators/layout/mapbox/__init__.py @@ -1,6 +1,7 @@ from ._zoom import ZoomValidator from ._style import StyleValidator from ._pitch import PitchValidator +from ._layerdefaults import LayerValidator from ._layers import LayersValidator from ._domain import DomainValidator from ._center import CenterValidator diff --git a/plotly/validators/layout/mapbox/_layerdefaults.py b/plotly/validators/layout/mapbox/_layerdefaults.py new file mode 100644 index 00000000000..3453b59e4b7 --- /dev/null +++ b/plotly/validators/layout/mapbox/_layerdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class LayerValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='layerdefaults', + parent_name='layout.mapbox', + **kwargs + ): + super(LayerValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Layer'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/polar/_angularaxis.py b/plotly/validators/layout/polar/_angularaxis.py index df41ba6600e..5673a302c1a 100644 --- a/plotly/validators/layout/polar/_angularaxis.py +++ b/plotly/validators/layout/polar/_angularaxis.py @@ -193,6 +193,10 @@ def __init__( plotly.graph_objs.layout.polar.angularaxis.Tick formatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.polar.angularaxis.Tick + formatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/polar/_radialaxis.py b/plotly/validators/layout/polar/_radialaxis.py index 0cace96f2de..431615d6eaf 100644 --- a/plotly/validators/layout/polar/_radialaxis.py +++ b/plotly/validators/layout/polar/_radialaxis.py @@ -214,6 +214,10 @@ def __init__( plotly.graph_objs.layout.polar.radialaxis.Tickf ormatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.polar.radialaxis.Tickf + ormatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/polar/angularaxis/__init__.py b/plotly/validators/layout/polar/angularaxis/__init__.py index 2d78e912f53..4a47ce509c8 100644 --- a/plotly/validators/layout/polar/angularaxis/__init__.py +++ b/plotly/validators/layout/polar/angularaxis/__init__.py @@ -10,6 +10,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/layout/polar/angularaxis/_tickformatstopdefaults.py b/plotly/validators/layout/polar/angularaxis/_tickformatstopdefaults.py new file mode 100644 index 00000000000..ad71a3c4b26 --- /dev/null +++ b/plotly/validators/layout/polar/angularaxis/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='layout.polar.angularaxis', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/polar/radialaxis/__init__.py b/plotly/validators/layout/polar/radialaxis/__init__.py index 90c2868eab8..64d4131f231 100644 --- a/plotly/validators/layout/polar/radialaxis/__init__.py +++ b/plotly/validators/layout/polar/radialaxis/__init__.py @@ -12,6 +12,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/layout/polar/radialaxis/_tickformatstopdefaults.py b/plotly/validators/layout/polar/radialaxis/_tickformatstopdefaults.py new file mode 100644 index 00000000000..170d853e8ba --- /dev/null +++ b/plotly/validators/layout/polar/radialaxis/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='layout.polar.radialaxis', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/scene/__init__.py b/plotly/validators/layout/scene/__init__.py index 43ee26f8d2f..428e15940ba 100644 --- a/plotly/validators/layout/scene/__init__.py +++ b/plotly/validators/layout/scene/__init__.py @@ -8,4 +8,5 @@ from ._bgcolor import BgcolorValidator from ._aspectratio import AspectratioValidator from ._aspectmode import AspectmodeValidator +from ._annotationdefaults import AnnotationValidator from ._annotations import AnnotationsValidator diff --git a/plotly/validators/layout/scene/_annotationdefaults.py b/plotly/validators/layout/scene/_annotationdefaults.py new file mode 100644 index 00000000000..811cf1c9a6e --- /dev/null +++ b/plotly/validators/layout/scene/_annotationdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class AnnotationValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='annotationdefaults', + parent_name='layout.scene', + **kwargs + ): + super(AnnotationValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Annotation'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/scene/_xaxis.py b/plotly/validators/layout/scene/_xaxis.py index e2cd31c5000..440b174aaab 100644 --- a/plotly/validators/layout/scene/_xaxis.py +++ b/plotly/validators/layout/scene/_xaxis.py @@ -222,6 +222,10 @@ def __init__( plotly.graph_objs.layout.scene.xaxis.Tickformat stop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.scene.xaxis.Tickformat + stop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/scene/_yaxis.py b/plotly/validators/layout/scene/_yaxis.py index d7317af308f..2d2307adb47 100644 --- a/plotly/validators/layout/scene/_yaxis.py +++ b/plotly/validators/layout/scene/_yaxis.py @@ -222,6 +222,10 @@ def __init__( plotly.graph_objs.layout.scene.yaxis.Tickformat stop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.scene.yaxis.Tickformat + stop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/scene/_zaxis.py b/plotly/validators/layout/scene/_zaxis.py index f67c01c8a6e..0db4334d42b 100644 --- a/plotly/validators/layout/scene/_zaxis.py +++ b/plotly/validators/layout/scene/_zaxis.py @@ -222,6 +222,10 @@ def __init__( plotly.graph_objs.layout.scene.zaxis.Tickformat stop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.scene.zaxis.Tickformat + stop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/scene/xaxis/__init__.py b/plotly/validators/layout/scene/xaxis/__init__.py index d5feb7a0b23..a524a7e4e3b 100644 --- a/plotly/validators/layout/scene/xaxis/__init__.py +++ b/plotly/validators/layout/scene/xaxis/__init__.py @@ -15,6 +15,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/layout/scene/xaxis/_tickformatstopdefaults.py b/plotly/validators/layout/scene/xaxis/_tickformatstopdefaults.py new file mode 100644 index 00000000000..1c8e6ccd2bc --- /dev/null +++ b/plotly/validators/layout/scene/xaxis/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='layout.scene.xaxis', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/scene/yaxis/__init__.py b/plotly/validators/layout/scene/yaxis/__init__.py index d5feb7a0b23..a524a7e4e3b 100644 --- a/plotly/validators/layout/scene/yaxis/__init__.py +++ b/plotly/validators/layout/scene/yaxis/__init__.py @@ -15,6 +15,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/layout/scene/yaxis/_tickformatstopdefaults.py b/plotly/validators/layout/scene/yaxis/_tickformatstopdefaults.py new file mode 100644 index 00000000000..0ea1d73ef97 --- /dev/null +++ b/plotly/validators/layout/scene/yaxis/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='layout.scene.yaxis', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/scene/zaxis/__init__.py b/plotly/validators/layout/scene/zaxis/__init__.py index d5feb7a0b23..a524a7e4e3b 100644 --- a/plotly/validators/layout/scene/zaxis/__init__.py +++ b/plotly/validators/layout/scene/zaxis/__init__.py @@ -15,6 +15,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/layout/scene/zaxis/_tickformatstopdefaults.py b/plotly/validators/layout/scene/zaxis/_tickformatstopdefaults.py new file mode 100644 index 00000000000..eb6c1963dad --- /dev/null +++ b/plotly/validators/layout/scene/zaxis/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='layout.scene.zaxis', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/slider/__init__.py b/plotly/validators/layout/slider/__init__.py index d8f66bd81e8..11039560539 100644 --- a/plotly/validators/layout/slider/__init__.py +++ b/plotly/validators/layout/slider/__init__.py @@ -8,6 +8,7 @@ from ._ticklen import TicklenValidator from ._tickcolor import TickcolorValidator from ._templateitemname import TemplateitemnameValidator +from ._stepdefaults import StepValidator from ._steps import StepsValidator from ._pad import PadValidator from ._name import NameValidator diff --git a/plotly/validators/layout/slider/_stepdefaults.py b/plotly/validators/layout/slider/_stepdefaults.py new file mode 100644 index 00000000000..1642076074e --- /dev/null +++ b/plotly/validators/layout/slider/_stepdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class StepValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='stepdefaults', + parent_name='layout.slider', + **kwargs + ): + super(StepValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Step'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/ternary/_aaxis.py b/plotly/validators/layout/ternary/_aaxis.py index 8be4a9137f3..bb394eeb647 100644 --- a/plotly/validators/layout/ternary/_aaxis.py +++ b/plotly/validators/layout/ternary/_aaxis.py @@ -157,6 +157,10 @@ def __init__( plotly.graph_objs.layout.ternary.aaxis.Tickform atstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.ternary.aaxis.Tickform + atstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/ternary/_baxis.py b/plotly/validators/layout/ternary/_baxis.py index ad298abfea7..6bbafc4803c 100644 --- a/plotly/validators/layout/ternary/_baxis.py +++ b/plotly/validators/layout/ternary/_baxis.py @@ -157,6 +157,10 @@ def __init__( plotly.graph_objs.layout.ternary.baxis.Tickform atstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.ternary.baxis.Tickform + atstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/ternary/_caxis.py b/plotly/validators/layout/ternary/_caxis.py index aa9836599f8..4a7ecef5f9c 100644 --- a/plotly/validators/layout/ternary/_caxis.py +++ b/plotly/validators/layout/ternary/_caxis.py @@ -157,6 +157,10 @@ def __init__( plotly.graph_objs.layout.ternary.caxis.Tickform atstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.layout.ternary.caxis.Tickform + atstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/ternary/aaxis/__init__.py b/plotly/validators/layout/ternary/aaxis/__init__.py index 5160bfc643f..74bd6aefad5 100644 --- a/plotly/validators/layout/ternary/aaxis/__init__.py +++ b/plotly/validators/layout/ternary/aaxis/__init__.py @@ -10,6 +10,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/layout/ternary/aaxis/_tickformatstopdefaults.py b/plotly/validators/layout/ternary/aaxis/_tickformatstopdefaults.py new file mode 100644 index 00000000000..84a65926d93 --- /dev/null +++ b/plotly/validators/layout/ternary/aaxis/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='layout.ternary.aaxis', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/ternary/baxis/__init__.py b/plotly/validators/layout/ternary/baxis/__init__.py index 5160bfc643f..74bd6aefad5 100644 --- a/plotly/validators/layout/ternary/baxis/__init__.py +++ b/plotly/validators/layout/ternary/baxis/__init__.py @@ -10,6 +10,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/layout/ternary/baxis/_tickformatstopdefaults.py b/plotly/validators/layout/ternary/baxis/_tickformatstopdefaults.py new file mode 100644 index 00000000000..9db908b046b --- /dev/null +++ b/plotly/validators/layout/ternary/baxis/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='layout.ternary.baxis', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/ternary/caxis/__init__.py b/plotly/validators/layout/ternary/caxis/__init__.py index 5160bfc643f..74bd6aefad5 100644 --- a/plotly/validators/layout/ternary/caxis/__init__.py +++ b/plotly/validators/layout/ternary/caxis/__init__.py @@ -10,6 +10,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/layout/ternary/caxis/_tickformatstopdefaults.py b/plotly/validators/layout/ternary/caxis/_tickformatstopdefaults.py new file mode 100644 index 00000000000..69a1b69e43a --- /dev/null +++ b/plotly/validators/layout/ternary/caxis/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='layout.ternary.caxis', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/updatemenu/__init__.py b/plotly/validators/layout/updatemenu/__init__.py index 0258a9167b2..cdac88a09e1 100644 --- a/plotly/validators/layout/updatemenu/__init__.py +++ b/plotly/validators/layout/updatemenu/__init__.py @@ -10,6 +10,7 @@ from ._name import NameValidator from ._font import FontValidator from ._direction import DirectionValidator +from ._buttondefaults import ButtonValidator from ._buttons import ButtonsValidator from ._borderwidth import BorderwidthValidator from ._bordercolor import BordercolorValidator diff --git a/plotly/validators/layout/updatemenu/_buttondefaults.py b/plotly/validators/layout/updatemenu/_buttondefaults.py new file mode 100644 index 00000000000..a6f003c503b --- /dev/null +++ b/plotly/validators/layout/updatemenu/_buttondefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class ButtonValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='buttondefaults', + parent_name='layout.updatemenu', + **kwargs + ): + super(ButtonValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Button'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/xaxis/__init__.py b/plotly/validators/layout/xaxis/__init__.py index 4af4c7585fe..5b47d40e99e 100644 --- a/plotly/validators/layout/xaxis/__init__.py +++ b/plotly/validators/layout/xaxis/__init__.py @@ -15,6 +15,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/layout/xaxis/_rangeselector.py b/plotly/validators/layout/xaxis/_rangeselector.py index f6313481b45..a1db8f27ceb 100644 --- a/plotly/validators/layout/xaxis/_rangeselector.py +++ b/plotly/validators/layout/xaxis/_rangeselector.py @@ -31,6 +31,10 @@ def __init__( Sets the specifications for each buttons. By default, a range selector comes with no buttons. + buttondefaults + plotly.graph_objs.layout.xaxis.rangeselector.Bu + tton instance or dict with compatible + properties font Sets the font of the range selector button text. diff --git a/plotly/validators/layout/xaxis/_tickformatstopdefaults.py b/plotly/validators/layout/xaxis/_tickformatstopdefaults.py new file mode 100644 index 00000000000..10472ae7c11 --- /dev/null +++ b/plotly/validators/layout/xaxis/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='layout.xaxis', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/xaxis/rangeselector/__init__.py b/plotly/validators/layout/xaxis/rangeselector/__init__.py index 2f846ea48dd..7d3ef7db357 100644 --- a/plotly/validators/layout/xaxis/rangeselector/__init__.py +++ b/plotly/validators/layout/xaxis/rangeselector/__init__.py @@ -4,6 +4,7 @@ from ._x import XValidator from ._visible import VisibleValidator from ._font import FontValidator +from ._buttondefaults import ButtonValidator from ._buttons import ButtonsValidator from ._borderwidth import BorderwidthValidator from ._bordercolor import BordercolorValidator diff --git a/plotly/validators/layout/xaxis/rangeselector/_buttondefaults.py b/plotly/validators/layout/xaxis/rangeselector/_buttondefaults.py new file mode 100644 index 00000000000..1a6ea38d79a --- /dev/null +++ b/plotly/validators/layout/xaxis/rangeselector/_buttondefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class ButtonValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='buttondefaults', + parent_name='layout.xaxis.rangeselector', + **kwargs + ): + super(ButtonValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Button'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/layout/yaxis/__init__.py b/plotly/validators/layout/yaxis/__init__.py index c927e92e2a7..eb902752468 100644 --- a/plotly/validators/layout/yaxis/__init__.py +++ b/plotly/validators/layout/yaxis/__init__.py @@ -15,6 +15,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/layout/yaxis/_tickformatstopdefaults.py b/plotly/validators/layout/yaxis/_tickformatstopdefaults.py new file mode 100644 index 00000000000..cb24e598be0 --- /dev/null +++ b/plotly/validators/layout/yaxis/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='layout.yaxis', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/mesh3d/_colorbar.py b/plotly/validators/mesh3d/_colorbar.py index 939d5923c34..5ea09489295 100644 --- a/plotly/validators/mesh3d/_colorbar.py +++ b/plotly/validators/mesh3d/_colorbar.py @@ -137,6 +137,9 @@ def __init__(self, plotly_name='colorbar', parent_name='mesh3d', **kwargs): tickformatstops plotly.graph_objs.mesh3d.colorbar.Tickformatsto p instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.mesh3d.colorbar.Tickformatsto + p instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/mesh3d/colorbar/__init__.py b/plotly/validators/mesh3d/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/mesh3d/colorbar/__init__.py +++ b/plotly/validators/mesh3d/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/mesh3d/colorbar/_tickformatstopdefaults.py b/plotly/validators/mesh3d/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..a6d4fad7bd0 --- /dev/null +++ b/plotly/validators/mesh3d/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='mesh3d.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/parcoords/__init__.py b/plotly/validators/parcoords/__init__.py index 423d615d513..794c4495c48 100644 --- a/plotly/validators/parcoords/__init__.py +++ b/plotly/validators/parcoords/__init__.py @@ -16,6 +16,7 @@ from ._hoverinfosrc import HoverinfosrcValidator from ._hoverinfo import HoverinfoValidator from ._domain import DomainValidator +from ._dimensiondefaults import DimensionValidator from ._dimensions import DimensionsValidator from ._customdatasrc import CustomdatasrcValidator from ._customdata import CustomdataValidator diff --git a/plotly/validators/parcoords/_dimensiondefaults.py b/plotly/validators/parcoords/_dimensiondefaults.py new file mode 100644 index 00000000000..f75fa95ffae --- /dev/null +++ b/plotly/validators/parcoords/_dimensiondefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class DimensionValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='dimensiondefaults', + parent_name='parcoords', + **kwargs + ): + super(DimensionValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Dimension'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/parcoords/line/_colorbar.py b/plotly/validators/parcoords/line/_colorbar.py index f55d53fd74d..2486be43032 100644 --- a/plotly/validators/parcoords/line/_colorbar.py +++ b/plotly/validators/parcoords/line/_colorbar.py @@ -140,6 +140,10 @@ def __init__( plotly.graph_objs.parcoords.line.colorbar.Tickf ormatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.parcoords.line.colorbar.Tickf + ormatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/parcoords/line/colorbar/__init__.py b/plotly/validators/parcoords/line/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/parcoords/line/colorbar/__init__.py +++ b/plotly/validators/parcoords/line/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/parcoords/line/colorbar/_tickformatstopdefaults.py b/plotly/validators/parcoords/line/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..d9922e138ba --- /dev/null +++ b/plotly/validators/parcoords/line/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='parcoords.line.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/scatter/marker/_colorbar.py b/plotly/validators/scatter/marker/_colorbar.py index f3f8d8c418a..92bc0f81d99 100644 --- a/plotly/validators/scatter/marker/_colorbar.py +++ b/plotly/validators/scatter/marker/_colorbar.py @@ -140,6 +140,10 @@ def __init__( plotly.graph_objs.scatter.marker.colorbar.Tickf ormatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scatter.marker.colorbar.Tickf + ormatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/scatter/marker/colorbar/__init__.py b/plotly/validators/scatter/marker/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/scatter/marker/colorbar/__init__.py +++ b/plotly/validators/scatter/marker/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/scatter/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/scatter/marker/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..07195576b22 --- /dev/null +++ b/plotly/validators/scatter/marker/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='scatter.marker.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/scatter3d/marker/_colorbar.py b/plotly/validators/scatter3d/marker/_colorbar.py index 60a7f691218..3fdb9909090 100644 --- a/plotly/validators/scatter3d/marker/_colorbar.py +++ b/plotly/validators/scatter3d/marker/_colorbar.py @@ -140,6 +140,10 @@ def __init__( plotly.graph_objs.scatter3d.marker.colorbar.Tic kformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scatter3d.marker.colorbar.Tic + kformatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/scatter3d/marker/colorbar/__init__.py b/plotly/validators/scatter3d/marker/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/scatter3d/marker/colorbar/__init__.py +++ b/plotly/validators/scatter3d/marker/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/scatter3d/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/scatter3d/marker/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..5e60f9076c1 --- /dev/null +++ b/plotly/validators/scatter3d/marker/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='scatter3d.marker.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/scattercarpet/marker/_colorbar.py b/plotly/validators/scattercarpet/marker/_colorbar.py index 660bd16e0fc..4ba964fb77f 100644 --- a/plotly/validators/scattercarpet/marker/_colorbar.py +++ b/plotly/validators/scattercarpet/marker/_colorbar.py @@ -143,6 +143,10 @@ def __init__( plotly.graph_objs.scattercarpet.marker.colorbar .Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scattercarpet.marker.colorbar + .Tickformatstop instance or dict with + compatible properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/scattercarpet/marker/colorbar/__init__.py b/plotly/validators/scattercarpet/marker/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/scattercarpet/marker/colorbar/__init__.py +++ b/plotly/validators/scattercarpet/marker/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/scattercarpet/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/scattercarpet/marker/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..711ea67d50a --- /dev/null +++ b/plotly/validators/scattercarpet/marker/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='scattercarpet.marker.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/scattergeo/marker/_colorbar.py b/plotly/validators/scattergeo/marker/_colorbar.py index a2f882da078..a55e6b6b325 100644 --- a/plotly/validators/scattergeo/marker/_colorbar.py +++ b/plotly/validators/scattergeo/marker/_colorbar.py @@ -143,6 +143,10 @@ def __init__( plotly.graph_objs.scattergeo.marker.colorbar.Ti ckformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scattergeo.marker.colorbar.Ti + ckformatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/scattergeo/marker/colorbar/__init__.py b/plotly/validators/scattergeo/marker/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/scattergeo/marker/colorbar/__init__.py +++ b/plotly/validators/scattergeo/marker/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/scattergeo/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/scattergeo/marker/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..c0dafaae8f0 --- /dev/null +++ b/plotly/validators/scattergeo/marker/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='scattergeo.marker.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/scattergl/marker/_colorbar.py b/plotly/validators/scattergl/marker/_colorbar.py index 189ed55360b..a6a5ddd2772 100644 --- a/plotly/validators/scattergl/marker/_colorbar.py +++ b/plotly/validators/scattergl/marker/_colorbar.py @@ -140,6 +140,10 @@ def __init__( plotly.graph_objs.scattergl.marker.colorbar.Tic kformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scattergl.marker.colorbar.Tic + kformatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/scattergl/marker/colorbar/__init__.py b/plotly/validators/scattergl/marker/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/scattergl/marker/colorbar/__init__.py +++ b/plotly/validators/scattergl/marker/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/scattergl/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/scattergl/marker/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..313a8c6c5fc --- /dev/null +++ b/plotly/validators/scattergl/marker/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='scattergl.marker.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/scattermapbox/marker/_colorbar.py b/plotly/validators/scattermapbox/marker/_colorbar.py index cdc6b01b190..baf1f5dc4ac 100644 --- a/plotly/validators/scattermapbox/marker/_colorbar.py +++ b/plotly/validators/scattermapbox/marker/_colorbar.py @@ -143,6 +143,10 @@ def __init__( plotly.graph_objs.scattermapbox.marker.colorbar .Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scattermapbox.marker.colorbar + .Tickformatstop instance or dict with + compatible properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/scattermapbox/marker/colorbar/__init__.py b/plotly/validators/scattermapbox/marker/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/scattermapbox/marker/colorbar/__init__.py +++ b/plotly/validators/scattermapbox/marker/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/scattermapbox/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/scattermapbox/marker/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..abf92069ba9 --- /dev/null +++ b/plotly/validators/scattermapbox/marker/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='scattermapbox.marker.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/scatterpolar/marker/_colorbar.py b/plotly/validators/scatterpolar/marker/_colorbar.py index eee5a09d210..87286160798 100644 --- a/plotly/validators/scatterpolar/marker/_colorbar.py +++ b/plotly/validators/scatterpolar/marker/_colorbar.py @@ -143,6 +143,10 @@ def __init__( plotly.graph_objs.scatterpolar.marker.colorbar. Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scatterpolar.marker.colorbar. + Tickformatstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/scatterpolar/marker/colorbar/__init__.py b/plotly/validators/scatterpolar/marker/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/scatterpolar/marker/colorbar/__init__.py +++ b/plotly/validators/scatterpolar/marker/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/scatterpolar/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/scatterpolar/marker/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..ab41b0ea49a --- /dev/null +++ b/plotly/validators/scatterpolar/marker/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='scatterpolar.marker.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/scatterpolargl/marker/_colorbar.py b/plotly/validators/scatterpolargl/marker/_colorbar.py index f392aa5bc6d..3fdadece2be 100644 --- a/plotly/validators/scatterpolargl/marker/_colorbar.py +++ b/plotly/validators/scatterpolargl/marker/_colorbar.py @@ -143,6 +143,10 @@ def __init__( plotly.graph_objs.scatterpolargl.marker.colorba r.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scatterpolargl.marker.colorba + r.Tickformatstop instance or dict with + compatible properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/scatterpolargl/marker/colorbar/__init__.py b/plotly/validators/scatterpolargl/marker/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/scatterpolargl/marker/colorbar/__init__.py +++ b/plotly/validators/scatterpolargl/marker/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/scatterpolargl/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/scatterpolargl/marker/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..18f41f907f4 --- /dev/null +++ b/plotly/validators/scatterpolargl/marker/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='scatterpolargl.marker.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/scatterternary/marker/_colorbar.py b/plotly/validators/scatterternary/marker/_colorbar.py index ecdc23a29c3..b1f7fee31eb 100644 --- a/plotly/validators/scatterternary/marker/_colorbar.py +++ b/plotly/validators/scatterternary/marker/_colorbar.py @@ -143,6 +143,10 @@ def __init__( plotly.graph_objs.scatterternary.marker.colorba r.Tickformatstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.scatterternary.marker.colorba + r.Tickformatstop instance or dict with + compatible properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/scatterternary/marker/colorbar/__init__.py b/plotly/validators/scatterternary/marker/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/scatterternary/marker/colorbar/__init__.py +++ b/plotly/validators/scatterternary/marker/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/scatterternary/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/scatterternary/marker/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..3e98505da41 --- /dev/null +++ b/plotly/validators/scatterternary/marker/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='scatterternary.marker.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/splom/__init__.py b/plotly/validators/splom/__init__.py index 31ab26e62f6..602760b5a9a 100644 --- a/plotly/validators/splom/__init__.py +++ b/plotly/validators/splom/__init__.py @@ -20,6 +20,7 @@ from ._hoverlabel import HoverlabelValidator from ._hoverinfosrc import HoverinfosrcValidator from ._hoverinfo import HoverinfoValidator +from ._dimensiondefaults import DimensionValidator from ._dimensions import DimensionsValidator from ._diagonal import DiagonalValidator from ._customdatasrc import CustomdatasrcValidator diff --git a/plotly/validators/splom/_dimensiondefaults.py b/plotly/validators/splom/_dimensiondefaults.py new file mode 100644 index 00000000000..25d9852c8aa --- /dev/null +++ b/plotly/validators/splom/_dimensiondefaults.py @@ -0,0 +1,16 @@ +import _plotly_utils.basevalidators + + +class DimensionValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, plotly_name='dimensiondefaults', parent_name='splom', **kwargs + ): + super(DimensionValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Dimension'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/splom/marker/_colorbar.py b/plotly/validators/splom/marker/_colorbar.py index 365ff1347e6..12ae0aaa3c0 100644 --- a/plotly/validators/splom/marker/_colorbar.py +++ b/plotly/validators/splom/marker/_colorbar.py @@ -140,6 +140,10 @@ def __init__( plotly.graph_objs.splom.marker.colorbar.Tickfor matstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.splom.marker.colorbar.Tickfor + matstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/splom/marker/colorbar/__init__.py b/plotly/validators/splom/marker/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/splom/marker/colorbar/__init__.py +++ b/plotly/validators/splom/marker/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/splom/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/splom/marker/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..61d2a1b4f67 --- /dev/null +++ b/plotly/validators/splom/marker/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='splom.marker.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/streamtube/_colorbar.py b/plotly/validators/streamtube/_colorbar.py index f4a5dfab51e..c4d1abbc790 100644 --- a/plotly/validators/streamtube/_colorbar.py +++ b/plotly/validators/streamtube/_colorbar.py @@ -140,6 +140,10 @@ def __init__( plotly.graph_objs.streamtube.colorbar.Tickforma tstop instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.streamtube.colorbar.Tickforma + tstop instance or dict with compatible + properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/streamtube/colorbar/__init__.py b/plotly/validators/streamtube/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/streamtube/colorbar/__init__.py +++ b/plotly/validators/streamtube/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/streamtube/colorbar/_tickformatstopdefaults.py b/plotly/validators/streamtube/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..ea07d04922b --- /dev/null +++ b/plotly/validators/streamtube/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='streamtube.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) diff --git a/plotly/validators/surface/_colorbar.py b/plotly/validators/surface/_colorbar.py index 96c56d73b21..489520a4fc6 100644 --- a/plotly/validators/surface/_colorbar.py +++ b/plotly/validators/surface/_colorbar.py @@ -139,6 +139,9 @@ def __init__( tickformatstops plotly.graph_objs.surface.colorbar.Tickformatst op instance or dict with compatible properties + tickformatstopdefaults + plotly.graph_objs.surface.colorbar.Tickformatst + op instance or dict with compatible properties ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/surface/colorbar/__init__.py b/plotly/validators/surface/colorbar/__init__.py index 5c903426b19..7b362d36cb4 100644 --- a/plotly/validators/surface/colorbar/__init__.py +++ b/plotly/validators/surface/colorbar/__init__.py @@ -17,6 +17,7 @@ from ._tickprefix import TickprefixValidator from ._tickmode import TickmodeValidator from ._ticklen import TicklenValidator +from ._tickformatstopdefaults import TickformatstopValidator from ._tickformatstops import TickformatstopsValidator from ._tickformat import TickformatValidator from ._tickfont import TickfontValidator diff --git a/plotly/validators/surface/colorbar/_tickformatstopdefaults.py b/plotly/validators/surface/colorbar/_tickformatstopdefaults.py new file mode 100644 index 00000000000..9597117ff2d --- /dev/null +++ b/plotly/validators/surface/colorbar/_tickformatstopdefaults.py @@ -0,0 +1,19 @@ +import _plotly_utils.basevalidators + + +class TickformatstopValidator(_plotly_utils.basevalidators.CompoundValidator): + + def __init__( + self, + plotly_name='tickformatstopdefaults', + parent_name='surface.colorbar', + **kwargs + ): + super(TickformatstopValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=kwargs.pop('data_class_str', 'Tickformatstop'), + data_docs=kwargs.pop('data_docs', """ +"""), + **kwargs + ) From e426808f6b12d26a7812a8f0246013e73fef9b99 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sun, 7 Oct 2018 06:37:06 -0400 Subject: [PATCH 03/34] Added codegen docstrings for layout.template and the elementdefaults properties --- codegen/__init__.py | 21 +- codegen/utils.py | 28 ++- plotly/graph_objs/_carpet.py | 12 +- plotly/graph_objs/_choropleth.py | 7 +- plotly/graph_objs/_cone.py | 6 +- plotly/graph_objs/_contour.py | 6 +- plotly/graph_objs/_contourcarpet.py | 8 +- plotly/graph_objs/_figure.py | 70 +++++-- plotly/graph_objs/_figurewidget.py | 70 +++++-- plotly/graph_objs/_heatmap.py | 6 +- plotly/graph_objs/_heatmapgl.py | 7 +- plotly/graph_objs/_histogram2d.py | 8 +- plotly/graph_objs/_histogram2dcontour.py | 8 +- plotly/graph_objs/_layout.py | 180 ++++++++++++++---- plotly/graph_objs/_mesh3d.py | 6 +- plotly/graph_objs/_parcoords.py | 17 +- plotly/graph_objs/_splom.py | 16 +- plotly/graph_objs/_streamtube.py | 7 +- plotly/graph_objs/_surface.py | 6 +- plotly/graph_objs/bar/_marker.py | 7 +- plotly/graph_objs/bar/marker/_colorbar.py | 16 +- plotly/graph_objs/barpolar/_marker.py | 8 +- .../graph_objs/barpolar/marker/_colorbar.py | 17 +- plotly/graph_objs/carpet/_aaxis.py | 17 +- plotly/graph_objs/carpet/_baxis.py | 17 +- plotly/graph_objs/choropleth/_colorbar.py | 16 +- plotly/graph_objs/cone/_colorbar.py | 17 +- plotly/graph_objs/contour/_colorbar.py | 17 +- plotly/graph_objs/contourcarpet/_colorbar.py | 17 +- plotly/graph_objs/heatmap/_colorbar.py | 17 +- plotly/graph_objs/heatmapgl/_colorbar.py | 16 +- plotly/graph_objs/histogram/_marker.py | 8 +- .../graph_objs/histogram/marker/_colorbar.py | 17 +- plotly/graph_objs/histogram2d/_colorbar.py | 17 +- .../histogram2dcontour/_colorbar.py | 17 +- plotly/graph_objs/layout/_mapbox.py | 16 +- plotly/graph_objs/layout/_polar.py | 16 +- plotly/graph_objs/layout/_scene.py | 38 ++-- plotly/graph_objs/layout/_slider.py | 16 +- plotly/graph_objs/layout/_template.py | 20 ++ plotly/graph_objs/layout/_ternary.py | 21 +- plotly/graph_objs/layout/_updatemenu.py | 17 +- plotly/graph_objs/layout/_xaxis.py | 24 ++- plotly/graph_objs/layout/_yaxis.py | 17 +- .../graph_objs/layout/polar/_angularaxis.py | 16 +- plotly/graph_objs/layout/polar/_radialaxis.py | 16 +- plotly/graph_objs/layout/scene/_xaxis.py | 17 +- plotly/graph_objs/layout/scene/_yaxis.py | 17 +- plotly/graph_objs/layout/scene/_zaxis.py | 17 +- plotly/graph_objs/layout/ternary/_aaxis.py | 17 +- plotly/graph_objs/layout/ternary/_baxis.py | 17 +- plotly/graph_objs/layout/ternary/_caxis.py | 17 +- .../graph_objs/layout/xaxis/_rangeselector.py | 17 +- plotly/graph_objs/mesh3d/_colorbar.py | 17 +- plotly/graph_objs/parcoords/_line.py | 8 +- plotly/graph_objs/parcoords/line/_colorbar.py | 17 +- plotly/graph_objs/scatter/_marker.py | 8 +- plotly/graph_objs/scatter/marker/_colorbar.py | 17 +- plotly/graph_objs/scatter3d/_marker.py | 8 +- .../graph_objs/scatter3d/marker/_colorbar.py | 17 +- plotly/graph_objs/scattercarpet/_marker.py | 8 +- .../scattercarpet/marker/_colorbar.py | 17 +- plotly/graph_objs/scattergeo/_marker.py | 8 +- .../graph_objs/scattergeo/marker/_colorbar.py | 17 +- plotly/graph_objs/scattergl/_marker.py | 8 +- .../graph_objs/scattergl/marker/_colorbar.py | 17 +- plotly/graph_objs/scattermapbox/_marker.py | 8 +- .../scattermapbox/marker/_colorbar.py | 17 +- plotly/graph_objs/scatterpolar/_marker.py | 8 +- .../scatterpolar/marker/_colorbar.py | 17 +- plotly/graph_objs/scatterpolargl/_marker.py | 8 +- .../scatterpolargl/marker/_colorbar.py | 17 +- plotly/graph_objs/scatterternary/_marker.py | 8 +- .../scatterternary/marker/_colorbar.py | 17 +- plotly/graph_objs/splom/_marker.py | 8 +- plotly/graph_objs/splom/marker/_colorbar.py | 17 +- plotly/graph_objs/streamtube/_colorbar.py | 16 +- plotly/graph_objs/surface/_colorbar.py | 17 +- plotly/validators/_layout.py | 58 ++++-- plotly/validators/_parcoords.py | 6 +- plotly/validators/_splom.py | 6 +- plotly/validators/bar/marker/_colorbar.py | 7 +- .../validators/barpolar/marker/_colorbar.py | 8 +- plotly/validators/carpet/_aaxis.py | 6 +- plotly/validators/carpet/_baxis.py | 6 +- plotly/validators/choropleth/_colorbar.py | 7 +- plotly/validators/cone/_colorbar.py | 6 +- plotly/validators/contour/_colorbar.py | 6 +- plotly/validators/contourcarpet/_colorbar.py | 8 +- plotly/validators/heatmap/_colorbar.py | 6 +- plotly/validators/heatmapgl/_colorbar.py | 7 +- .../validators/histogram/marker/_colorbar.py | 8 +- plotly/validators/histogram2d/_colorbar.py | 8 +- .../histogram2dcontour/_colorbar.py | 8 +- plotly/validators/layout/_mapbox.py | 6 +- plotly/validators/layout/_scene.py | 6 +- plotly/validators/layout/_sliders.py | 6 +- plotly/validators/layout/_updatemenus.py | 6 +- plotly/validators/layout/_xaxis.py | 6 +- plotly/validators/layout/_yaxis.py | 6 +- .../validators/layout/polar/_angularaxis.py | 8 +- plotly/validators/layout/polar/_radialaxis.py | 8 +- plotly/validators/layout/scene/_xaxis.py | 7 +- plotly/validators/layout/scene/_yaxis.py | 7 +- plotly/validators/layout/scene/_zaxis.py | 7 +- plotly/validators/layout/ternary/_aaxis.py | 7 +- plotly/validators/layout/ternary/_baxis.py | 7 +- plotly/validators/layout/ternary/_caxis.py | 7 +- .../validators/layout/xaxis/_rangeselector.py | 7 +- plotly/validators/mesh3d/_colorbar.py | 6 +- plotly/validators/parcoords/line/_colorbar.py | 8 +- plotly/validators/scatter/marker/_colorbar.py | 8 +- .../validators/scatter3d/marker/_colorbar.py | 8 +- .../scattercarpet/marker/_colorbar.py | 8 +- .../validators/scattergeo/marker/_colorbar.py | 8 +- .../validators/scattergl/marker/_colorbar.py | 8 +- .../scattermapbox/marker/_colorbar.py | 8 +- .../scatterpolar/marker/_colorbar.py | 8 +- .../scatterpolargl/marker/_colorbar.py | 8 +- .../scatterternary/marker/_colorbar.py | 8 +- plotly/validators/splom/marker/_colorbar.py | 8 +- plotly/validators/streamtube/_colorbar.py | 7 +- plotly/validators/surface/_colorbar.py | 6 +- 123 files changed, 1277 insertions(+), 483 deletions(-) diff --git a/codegen/__init__.py b/codegen/__init__.py index 3d022c4f691..6332593443b 100644 --- a/codegen/__init__.py +++ b/codegen/__init__.py @@ -46,7 +46,26 @@ def preprocess_schema(plotly_schema): for trace in plotly_schema['traces'] }, "layout": { - } + }, + "description": """\ +Default attributes to be applied to the plot. +This should be a dict with format: `{'layout': layoutTemplate, 'data': +{trace_type: [traceTemplate, ...], ...}}` where `layoutTemplate` is a dict +matching the structure of `figure.layout` and `traceTemplate` is a dict +matching the structure of the trace with type `trace_type` (e.g. 'scatter'). +Alternatively, this may be specified as an instance of +plotly.graph_objs.layout.Template. + +Trace templates are applied cyclically to +traces of each type. Container arrays (eg `annotations`) have special +handling: An object ending in `defaults` (eg `annotationdefaults`) is +applied to each array item. But if an item has a `templateitemname` +key we look in the template array for an item with matching `name` and +apply that instead. If no matching `name` is found we mark the item +invisible. Any named template item not referenced is appended to the +end of the array, so this can be used to add a watermark annotation or a +logo image, for example. To omit one of these items on the plot, make +an item with matching `templateitemname` and `visible: false`.""" } layout['template'] = template diff --git a/codegen/utils.py b/codegen/utils.py index 11a1da7e61e..bd307ba9a05 100644 --- a/codegen/utils.py +++ b/codegen/utils.py @@ -1120,6 +1120,9 @@ class ElementDefaultsNode(PlotlyNode): def __init__(self, array_node, plotly_schema): """ + Create node that represents element defaults properties + (e.g. layout.annotationdefaults). Construct as a wrapper around the + corresponding array property node (e.g. layout.annotations) Parameters ---------- @@ -1139,7 +1142,23 @@ def node_data(self): @property def description(self): - return '' + array_property_path = (self.parent_path_str + + '.' + self.array_node.name_property) + + if isinstance(self.array_node, TraceNode): + data_path = 'data.' + else: + data_path = '' + + defaults_property_path = ('layout.template.' + + data_path + + self.parent_path_str + + '.' + self.plotly_name) + return f"""\ +When used in a template +(as {defaults_property_path}), +sets the default property values to use for elements +of {array_property_path}""" @property def name_base_datatype(self): @@ -1155,11 +1174,4 @@ def plotly_name(self): @property def name_datatype_class(self): - """ - Name of the Python datatype class representing this node - - Returns - ------- - str - """ return self.element_node.name_datatype_class diff --git a/plotly/graph_objs/_carpet.py b/plotly/graph_objs/_carpet.py index a1909d4df67..07afb17efc4 100644 --- a/plotly/graph_objs/_carpet.py +++ b/plotly/graph_objs/_carpet.py @@ -226,8 +226,10 @@ def aaxis(self): plotly.graph_objs.carpet.aaxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.carpet.aaxis.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.dat + a.carpet.aaxis.tickformatstopdefaults), sets + the default property values to use for elements + of carpet.aaxis.tickformatstops tickmode tickprefix @@ -514,8 +516,10 @@ def baxis(self): plotly.graph_objs.carpet.baxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.carpet.baxis.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.dat + a.carpet.baxis.tickformatstopdefaults), sets + the default property values to use for elements + of carpet.baxis.tickformatstops tickmode tickprefix diff --git a/plotly/graph_objs/_choropleth.py b/plotly/graph_objs/_choropleth.py index c89e21ba88c..99edc48ca4b 100644 --- a/plotly/graph_objs/_choropleth.py +++ b/plotly/graph_objs/_choropleth.py @@ -171,9 +171,10 @@ def colorbar(self): tstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.choropleth.colorbar.Tickforma - tstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.choropleth.colorbar.tickformatstopdefaults), + sets the default property values to use for + elements of choropleth.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/_cone.py b/plotly/graph_objs/_cone.py index a02f0d76fc2..020b2e0c4e4 100644 --- a/plotly/graph_objs/_cone.py +++ b/plotly/graph_objs/_cone.py @@ -260,8 +260,10 @@ def colorbar(self): plotly.graph_objs.cone.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.cone.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.dat + a.cone.colorbar.tickformatstopdefaults), sets + the default property values to use for elements + of cone.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/_contour.py b/plotly/graph_objs/_contour.py index 924ebeec08d..b5894e6f5c1 100644 --- a/plotly/graph_objs/_contour.py +++ b/plotly/graph_objs/_contour.py @@ -193,8 +193,10 @@ def colorbar(self): plotly.graph_objs.contour.colorbar.Tickformatst op instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.contour.colorbar.Tickformatst - op instance or dict with compatible properties + When used in a template (as layout.template.dat + a.contour.colorbar.tickformatstopdefaults), + sets the default property values to use for + elements of contour.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/_contourcarpet.py b/plotly/graph_objs/_contourcarpet.py index b896b735d06..1d8706bb6e0 100644 --- a/plotly/graph_objs/_contourcarpet.py +++ b/plotly/graph_objs/_contourcarpet.py @@ -386,9 +386,11 @@ def colorbar(self): rmatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.contourcarpet.colorbar.Tickfo - rmatstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.contourcarpet.colorbar.tickformatstopdefaults + ), sets the default property values to use for + elements of + contourcarpet.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/_figure.py b/plotly/graph_objs/_figure.py index 38a6a4e83ee..0741cf0a059 100644 --- a/plotly/graph_objs/_figure.py +++ b/plotly/graph_objs/_figure.py @@ -59,8 +59,10 @@ def __init__( plotly.graph_objs.layout.Annotation instance or dict with compatible properties annotationdefaults - plotly.graph_objs.layout.Annotation instance or - dict with compatible properties + When used in a template (as + layout.template.layout.annotationdefaults), + sets the default property values to use for + elements of layout.annotations autosize Determines whether or not a layout width or height that has been left undefined by the user @@ -212,8 +214,10 @@ def __init__( plotly.graph_objs.layout.Image instance or dict with compatible properties imagedefaults - plotly.graph_objs.layout.Image instance or dict - with compatible properties + When used in a template (as + layout.template.layout.imagedefaults), sets the + default property values to use for elements of + layout.images legend plotly.graph_objs.layout.Legend instance or dict with compatible properties @@ -265,8 +269,10 @@ def __init__( plotly.graph_objs.layout.Shape instance or dict with compatible properties shapedefaults - plotly.graph_objs.layout.Shape instance or dict - with compatible properties + When used in a template (as + layout.template.layout.shapedefaults), sets the + default property values to use for elements of + layout.shapes showlegend Determines whether or not a legend is drawn. Default is `true` if there is a trace to show @@ -278,8 +284,10 @@ def __init__( plotly.graph_objs.layout.Slider instance or dict with compatible properties sliderdefaults - plotly.graph_objs.layout.Slider instance or - dict with compatible properties + When used in a template (as + layout.template.layout.sliderdefaults), sets + the default property values to use for elements + of layout.sliders spikedistance Sets the default distance (in pixels) to look for data to draw spikelines to (-1 means no @@ -289,8 +297,32 @@ def __init__( hovered on but will not generate spikelines, such as scatter fills. template - plotly.graph_objs.layout.Template instance or - dict with compatible properties + Default attributes to be applied to the plot. + This should be a dict with format: `{'layout': + layoutTemplate, 'data': {trace_type: + [traceTemplate, ...], ...}}` where + `layoutTemplate` is a dict matching the + structure of `figure.layout` and + `traceTemplate` is a dict matching the + structure of the trace with type `trace_type` + (e.g. 'scatter'). Alternatively, this may be + specified as an instance of + plotly.graph_objs.layout.Template. Trace + templates are applied cyclically to traces of + each type. Container arrays (eg `annotations`) + have special handling: An object ending in + `defaults` (eg `annotationdefaults`) is applied + to each array item. But if an item has a + `templateitemname` key we look in the template + array for an item with matching `name` and + apply that instead. If no matching `name` is + found we mark the item invisible. Any named + template item not referenced is appended to the + end of the array, so this can be used to add a + watermark annotation or a logo image, for + example. To omit one of these items on the + plot, make an item with matching + `templateitemname` and `visible: false`. ternary plotly.graph_objs.layout.Ternary instance or dict with compatible properties @@ -302,8 +334,10 @@ def __init__( plotly.graph_objs.layout.Updatemenu instance or dict with compatible properties updatemenudefaults - plotly.graph_objs.layout.Updatemenu instance or - dict with compatible properties + When used in a template (as + layout.template.layout.updatemenudefaults), + sets the default property values to use for + elements of layout.updatemenus violingap Sets the gap (in plot fraction) between violins of adjacent location coordinates. @@ -4960,8 +4994,10 @@ def add_parcoords( The dimensions (variables) of the parallel coordinates chart. 2..60 dimensions are supported. dimensiondefaults - plotly.graph_objs.parcoords.Dimension instance or dict - with compatible properties + When used in a template (as + layout.template.data.parcoords.dimensiondefaults), sets + the default property values to use for elements of + parcoords.dimensions domain plotly.graph_objs.parcoords.Domain instance or dict with compatible properties @@ -8186,8 +8222,10 @@ def add_splom( plotly.graph_objs.splom.Dimension instance or dict with compatible properties dimensiondefaults - plotly.graph_objs.splom.Dimension instance or dict with - compatible properties + When used in a template (as + layout.template.data.splom.dimensiondefaults), sets the + default property values to use for elements of + splom.dimensions hoverinfo Determines which trace information appear on hover. If `none` or `skip` are set, no information is displayed diff --git a/plotly/graph_objs/_figurewidget.py b/plotly/graph_objs/_figurewidget.py index a86690a7b9b..58bd0253ff4 100644 --- a/plotly/graph_objs/_figurewidget.py +++ b/plotly/graph_objs/_figurewidget.py @@ -59,8 +59,10 @@ def __init__( plotly.graph_objs.layout.Annotation instance or dict with compatible properties annotationdefaults - plotly.graph_objs.layout.Annotation instance or - dict with compatible properties + When used in a template (as + layout.template.layout.annotationdefaults), + sets the default property values to use for + elements of layout.annotations autosize Determines whether or not a layout width or height that has been left undefined by the user @@ -212,8 +214,10 @@ def __init__( plotly.graph_objs.layout.Image instance or dict with compatible properties imagedefaults - plotly.graph_objs.layout.Image instance or dict - with compatible properties + When used in a template (as + layout.template.layout.imagedefaults), sets the + default property values to use for elements of + layout.images legend plotly.graph_objs.layout.Legend instance or dict with compatible properties @@ -265,8 +269,10 @@ def __init__( plotly.graph_objs.layout.Shape instance or dict with compatible properties shapedefaults - plotly.graph_objs.layout.Shape instance or dict - with compatible properties + When used in a template (as + layout.template.layout.shapedefaults), sets the + default property values to use for elements of + layout.shapes showlegend Determines whether or not a legend is drawn. Default is `true` if there is a trace to show @@ -278,8 +284,10 @@ def __init__( plotly.graph_objs.layout.Slider instance or dict with compatible properties sliderdefaults - plotly.graph_objs.layout.Slider instance or - dict with compatible properties + When used in a template (as + layout.template.layout.sliderdefaults), sets + the default property values to use for elements + of layout.sliders spikedistance Sets the default distance (in pixels) to look for data to draw spikelines to (-1 means no @@ -289,8 +297,32 @@ def __init__( hovered on but will not generate spikelines, such as scatter fills. template - plotly.graph_objs.layout.Template instance or - dict with compatible properties + Default attributes to be applied to the plot. + This should be a dict with format: `{'layout': + layoutTemplate, 'data': {trace_type: + [traceTemplate, ...], ...}}` where + `layoutTemplate` is a dict matching the + structure of `figure.layout` and + `traceTemplate` is a dict matching the + structure of the trace with type `trace_type` + (e.g. 'scatter'). Alternatively, this may be + specified as an instance of + plotly.graph_objs.layout.Template. Trace + templates are applied cyclically to traces of + each type. Container arrays (eg `annotations`) + have special handling: An object ending in + `defaults` (eg `annotationdefaults`) is applied + to each array item. But if an item has a + `templateitemname` key we look in the template + array for an item with matching `name` and + apply that instead. If no matching `name` is + found we mark the item invisible. Any named + template item not referenced is appended to the + end of the array, so this can be used to add a + watermark annotation or a logo image, for + example. To omit one of these items on the + plot, make an item with matching + `templateitemname` and `visible: false`. ternary plotly.graph_objs.layout.Ternary instance or dict with compatible properties @@ -302,8 +334,10 @@ def __init__( plotly.graph_objs.layout.Updatemenu instance or dict with compatible properties updatemenudefaults - plotly.graph_objs.layout.Updatemenu instance or - dict with compatible properties + When used in a template (as + layout.template.layout.updatemenudefaults), + sets the default property values to use for + elements of layout.updatemenus violingap Sets the gap (in plot fraction) between violins of adjacent location coordinates. @@ -4960,8 +4994,10 @@ def add_parcoords( The dimensions (variables) of the parallel coordinates chart. 2..60 dimensions are supported. dimensiondefaults - plotly.graph_objs.parcoords.Dimension instance or dict - with compatible properties + When used in a template (as + layout.template.data.parcoords.dimensiondefaults), sets + the default property values to use for elements of + parcoords.dimensions domain plotly.graph_objs.parcoords.Domain instance or dict with compatible properties @@ -8186,8 +8222,10 @@ def add_splom( plotly.graph_objs.splom.Dimension instance or dict with compatible properties dimensiondefaults - plotly.graph_objs.splom.Dimension instance or dict with - compatible properties + When used in a template (as + layout.template.data.splom.dimensiondefaults), sets the + default property values to use for elements of + splom.dimensions hoverinfo Determines which trace information appear on hover. If `none` or `skip` are set, no information is displayed diff --git a/plotly/graph_objs/_heatmap.py b/plotly/graph_objs/_heatmap.py index aef76266292..2bcc4ea1a9f 100644 --- a/plotly/graph_objs/_heatmap.py +++ b/plotly/graph_objs/_heatmap.py @@ -170,8 +170,10 @@ def colorbar(self): plotly.graph_objs.heatmap.colorbar.Tickformatst op instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.heatmap.colorbar.Tickformatst - op instance or dict with compatible properties + When used in a template (as layout.template.dat + a.heatmap.colorbar.tickformatstopdefaults), + sets the default property values to use for + elements of heatmap.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/_heatmapgl.py b/plotly/graph_objs/_heatmapgl.py index 9e83966c7fd..74d5421c717 100644 --- a/plotly/graph_objs/_heatmapgl.py +++ b/plotly/graph_objs/_heatmapgl.py @@ -171,9 +171,10 @@ def colorbar(self): stop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.heatmapgl.colorbar.Tickformat - stop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.heatmapgl.colorbar.tickformatstopdefaults), + sets the default property values to use for + elements of heatmapgl.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/_histogram2d.py b/plotly/graph_objs/_histogram2d.py index b15e611952f..fb83ad58b30 100644 --- a/plotly/graph_objs/_histogram2d.py +++ b/plotly/graph_objs/_histogram2d.py @@ -217,9 +217,11 @@ def colorbar(self): atstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.histogram2d.colorbar.Tickform - atstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.histogram2d.colorbar.tickformatstopdefaults), + sets the default property values to use for + elements of + histogram2d.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/_histogram2dcontour.py b/plotly/graph_objs/_histogram2dcontour.py index 05de3d326d2..c407a7a8eea 100644 --- a/plotly/graph_objs/_histogram2dcontour.py +++ b/plotly/graph_objs/_histogram2dcontour.py @@ -240,9 +240,11 @@ def colorbar(self): ickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.histogram2dcontour.colorbar.T - ickformatstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.histogram2dcontour.colorbar.tickformatstopdef + aults), sets the default property values to use + for elements of + histogram2dcontour.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/_layout.py b/plotly/graph_objs/_layout.py index 83d659aa59b..24c9c111867 100644 --- a/plotly/graph_objs/_layout.py +++ b/plotly/graph_objs/_layout.py @@ -359,6 +359,10 @@ def annotations(self, val): @property def annotationdefaults(self): """ + When used in a template (as + layout.template.layout.annotationdefaults), sets the default + property values to use for elements of layout.annotations + The 'annotationdefaults' property is an instance of Annotation that may be specified as: - An instance of plotly.graph_objs.layout.Annotation @@ -1269,6 +1273,10 @@ def images(self, val): @property def imagedefaults(self): """ + When used in a template (as + layout.template.layout.imagedefaults), sets the default + property values to use for elements of layout.images + The 'imagedefaults' property is an instance of Image that may be specified as: - An instance of plotly.graph_objs.layout.Image @@ -1381,8 +1389,10 @@ def mapbox(self): plotly.graph_objs.layout.mapbox.Layer instance or dict with compatible properties layerdefaults - plotly.graph_objs.layout.mapbox.Layer instance - or dict with compatible properties + When used in a template (as + layout.template.layout.mapbox.layerdefaults), + sets the default property values to use for + elements of layout.mapbox.layers pitch Sets the pitch angle of the map (in degrees, where 0 means perpendicular to the surface of @@ -1759,8 +1769,10 @@ def scene(self): plotly.graph_objs.layout.scene.Annotation instance or dict with compatible properties annotationdefaults - plotly.graph_objs.layout.scene.Annotation - instance or dict with compatible properties + When used in a template (as layout.template.lay + out.scene.annotationdefaults), sets the default + property values to use for elements of + layout.scene.annotations aspectmode If "cube", this scene's axes are drawn as a cube, regardless of the axes' ranges. If @@ -2033,6 +2045,10 @@ def shapes(self, val): @property def shapedefaults(self): """ + When used in a template (as + layout.template.layout.shapedefaults), sets the default + property values to use for elements of layout.shapes + The 'shapedefaults' property is an instance of Shape that may be specified as: - An instance of plotly.graph_objs.layout.Shape @@ -2136,8 +2152,10 @@ def sliders(self): plotly.graph_objs.layout.slider.Step instance or dict with compatible properties stepdefaults - plotly.graph_objs.layout.slider.Step instance - or dict with compatible properties + When used in a template (as + layout.template.layout.slider.stepdefaults), + sets the default property values to use for + elements of layout.slider.steps templateitemname Used to refer to a named item in this array in the template. Named items from the template @@ -2193,6 +2211,10 @@ def sliders(self, val): @property def sliderdefaults(self): """ + When used in a template (as + layout.template.layout.sliderdefaults), sets the default + property values to use for elements of layout.sliders + The 'sliderdefaults' property is an instance of Slider that may be specified as: - An instance of plotly.graph_objs.layout.Slider @@ -2241,6 +2263,26 @@ def spikedistance(self, val): @property def template(self): """ + Default attributes to be applied to the plot. This should be a + dict with format: `{'layout': layoutTemplate, 'data': + {trace_type: [traceTemplate, ...], ...}}` where + `layoutTemplate` is a dict matching the structure of + `figure.layout` and `traceTemplate` is a dict matching the + structure of the trace with type `trace_type` (e.g. 'scatter'). + Alternatively, this may be specified as an instance of + plotly.graph_objs.layout.Template. Trace templates are applied + cyclically to traces of each type. Container arrays (eg + `annotations`) have special handling: An object ending in + `defaults` (eg `annotationdefaults`) is applied to each array + item. But if an item has a `templateitemname` key we look in + the template array for an item with matching `name` and apply + that instead. If no matching `name` is found we mark the item + invisible. Any named template item not referenced is appended + to the end of the array, so this can be used to add a watermark + annotation or a logo image, for example. To omit one of these + items on the plot, make an item with matching + `templateitemname` and `visible: false`. + The 'template' property is an instance of Template that may be specified as: - An instance of plotly.graph_objs.layout.Template @@ -2402,8 +2444,10 @@ def updatemenus(self): plotly.graph_objs.layout.updatemenu.Button instance or dict with compatible properties buttondefaults - plotly.graph_objs.layout.updatemenu.Button - instance or dict with compatible properties + When used in a template (as layout.template.lay + out.updatemenu.buttondefaults), sets the + default property values to use for elements of + layout.updatemenu.buttons direction Determines the direction in which the buttons are laid out, whether in a dropdown menu or a @@ -2478,6 +2522,10 @@ def updatemenus(self, val): @property def updatemenudefaults(self): """ + When used in a template (as + layout.template.layout.updatemenudefaults), sets the default + property values to use for elements of layout.updatemenus + The 'updatemenudefaults' property is an instance of Updatemenu that may be specified as: - An instance of plotly.graph_objs.layout.Updatemenu @@ -2900,8 +2948,10 @@ def xaxis(self): plotly.graph_objs.layout.xaxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.xaxis.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.lay + out.xaxis.tickformatstopdefaults), sets the + default property values to use for elements of + layout.xaxis.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -3285,8 +3335,10 @@ def yaxis(self): plotly.graph_objs.layout.yaxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.yaxis.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.lay + out.yaxis.tickformatstopdefaults), sets the + default property values to use for elements of + layout.yaxis.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -3377,8 +3429,10 @@ def _prop_descriptions(self): plotly.graph_objs.layout.Annotation instance or dict with compatible properties annotationdefaults - plotly.graph_objs.layout.Annotation instance or dict - with compatible properties + When used in a template (as + layout.template.layout.annotationdefaults), sets the + default property values to use for elements of + layout.annotations autosize Determines whether or not a layout width or height that has been left undefined by the user is initialized on @@ -3514,8 +3568,9 @@ def _prop_descriptions(self): plotly.graph_objs.layout.Image instance or dict with compatible properties imagedefaults - plotly.graph_objs.layout.Image instance or dict with - compatible properties + When used in a template (as + layout.template.layout.imagedefaults), sets the default + property values to use for elements of layout.images legend plotly.graph_objs.layout.Legend instance or dict with compatible properties @@ -3563,8 +3618,9 @@ def _prop_descriptions(self): plotly.graph_objs.layout.Shape instance or dict with compatible properties shapedefaults - plotly.graph_objs.layout.Shape instance or dict with - compatible properties + When used in a template (as + layout.template.layout.shapedefaults), sets the default + property values to use for elements of layout.shapes showlegend Determines whether or not a legend is drawn. Default is `true` if there is a trace to show and any of these: a) @@ -3575,8 +3631,10 @@ def _prop_descriptions(self): plotly.graph_objs.layout.Slider instance or dict with compatible properties sliderdefaults - plotly.graph_objs.layout.Slider instance or dict with - compatible properties + When used in a template (as + layout.template.layout.sliderdefaults), sets the + default property values to use for elements of + layout.sliders spikedistance Sets the default distance (in pixels) to look for data to draw spikelines to (-1 means no cutoff, 0 means no @@ -3585,8 +3643,28 @@ def _prop_descriptions(self): objects can be hovered on but will not generate spikelines, such as scatter fills. template - plotly.graph_objs.layout.Template instance or dict with - compatible properties + Default attributes to be applied to the plot. This + should be a dict with format: `{'layout': + layoutTemplate, 'data': {trace_type: [traceTemplate, + ...], ...}}` where `layoutTemplate` is a dict matching + the structure of `figure.layout` and `traceTemplate` is + a dict matching the structure of the trace with type + `trace_type` (e.g. 'scatter'). Alternatively, this may + be specified as an instance of + plotly.graph_objs.layout.Template. Trace templates are + applied cyclically to traces of each type. Container + arrays (eg `annotations`) have special handling: An + object ending in `defaults` (eg `annotationdefaults`) + is applied to each array item. But if an item has a + `templateitemname` key we look in the template array + for an item with matching `name` and apply that + instead. If no matching `name` is found we mark the + item invisible. Any named template item not referenced + is appended to the end of the array, so this can be + used to add a watermark annotation or a logo image, for + example. To omit one of these items on the plot, make + an item with matching `templateitemname` and `visible: + false`. ternary plotly.graph_objs.layout.Ternary instance or dict with compatible properties @@ -3598,8 +3676,10 @@ def _prop_descriptions(self): plotly.graph_objs.layout.Updatemenu instance or dict with compatible properties updatemenudefaults - plotly.graph_objs.layout.Updatemenu instance or dict - with compatible properties + When used in a template (as + layout.template.layout.updatemenudefaults), sets the + default property values to use for elements of + layout.updatemenus violingap Sets the gap (in plot fraction) between violins of adjacent location coordinates. @@ -3703,8 +3783,10 @@ def __init__( plotly.graph_objs.layout.Annotation instance or dict with compatible properties annotationdefaults - plotly.graph_objs.layout.Annotation instance or dict - with compatible properties + When used in a template (as + layout.template.layout.annotationdefaults), sets the + default property values to use for elements of + layout.annotations autosize Determines whether or not a layout width or height that has been left undefined by the user is initialized on @@ -3840,8 +3922,9 @@ def __init__( plotly.graph_objs.layout.Image instance or dict with compatible properties imagedefaults - plotly.graph_objs.layout.Image instance or dict with - compatible properties + When used in a template (as + layout.template.layout.imagedefaults), sets the default + property values to use for elements of layout.images legend plotly.graph_objs.layout.Legend instance or dict with compatible properties @@ -3889,8 +3972,9 @@ def __init__( plotly.graph_objs.layout.Shape instance or dict with compatible properties shapedefaults - plotly.graph_objs.layout.Shape instance or dict with - compatible properties + When used in a template (as + layout.template.layout.shapedefaults), sets the default + property values to use for elements of layout.shapes showlegend Determines whether or not a legend is drawn. Default is `true` if there is a trace to show and any of these: a) @@ -3901,8 +3985,10 @@ def __init__( plotly.graph_objs.layout.Slider instance or dict with compatible properties sliderdefaults - plotly.graph_objs.layout.Slider instance or dict with - compatible properties + When used in a template (as + layout.template.layout.sliderdefaults), sets the + default property values to use for elements of + layout.sliders spikedistance Sets the default distance (in pixels) to look for data to draw spikelines to (-1 means no cutoff, 0 means no @@ -3911,8 +3997,28 @@ def __init__( objects can be hovered on but will not generate spikelines, such as scatter fills. template - plotly.graph_objs.layout.Template instance or dict with - compatible properties + Default attributes to be applied to the plot. This + should be a dict with format: `{'layout': + layoutTemplate, 'data': {trace_type: [traceTemplate, + ...], ...}}` where `layoutTemplate` is a dict matching + the structure of `figure.layout` and `traceTemplate` is + a dict matching the structure of the trace with type + `trace_type` (e.g. 'scatter'). Alternatively, this may + be specified as an instance of + plotly.graph_objs.layout.Template. Trace templates are + applied cyclically to traces of each type. Container + arrays (eg `annotations`) have special handling: An + object ending in `defaults` (eg `annotationdefaults`) + is applied to each array item. But if an item has a + `templateitemname` key we look in the template array + for an item with matching `name` and apply that + instead. If no matching `name` is found we mark the + item invisible. Any named template item not referenced + is appended to the end of the array, so this can be + used to add a watermark annotation or a logo image, for + example. To omit one of these items on the plot, make + an item with matching `templateitemname` and `visible: + false`. ternary plotly.graph_objs.layout.Ternary instance or dict with compatible properties @@ -3924,8 +4030,10 @@ def __init__( plotly.graph_objs.layout.Updatemenu instance or dict with compatible properties updatemenudefaults - plotly.graph_objs.layout.Updatemenu instance or dict - with compatible properties + When used in a template (as + layout.template.layout.updatemenudefaults), sets the + default property values to use for elements of + layout.updatemenus violingap Sets the gap (in plot fraction) between violins of adjacent location coordinates. diff --git a/plotly/graph_objs/_mesh3d.py b/plotly/graph_objs/_mesh3d.py index 4250bd59c1b..76d99cf992c 100644 --- a/plotly/graph_objs/_mesh3d.py +++ b/plotly/graph_objs/_mesh3d.py @@ -333,8 +333,10 @@ def colorbar(self): plotly.graph_objs.mesh3d.colorbar.Tickformatsto p instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.mesh3d.colorbar.Tickformatsto - p instance or dict with compatible properties + When used in a template (as layout.template.dat + a.mesh3d.colorbar.tickformatstopdefaults), sets + the default property values to use for elements + of mesh3d.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/_parcoords.py b/plotly/graph_objs/_parcoords.py index 4619deedf9e..02cd8c6c9f1 100644 --- a/plotly/graph_objs/_parcoords.py +++ b/plotly/graph_objs/_parcoords.py @@ -150,6 +150,11 @@ def dimensions(self, val): @property def dimensiondefaults(self): """ + When used in a template (as + layout.template.data.parcoords.dimensiondefaults), sets the + default property values to use for elements of + parcoords.dimensions + The 'dimensiondefaults' property is an instance of Dimension that may be specified as: - An instance of plotly.graph_objs.parcoords.Dimension @@ -783,8 +788,10 @@ def _prop_descriptions(self): The dimensions (variables) of the parallel coordinates chart. 2..60 dimensions are supported. dimensiondefaults - plotly.graph_objs.parcoords.Dimension instance or dict - with compatible properties + When used in a template (as + layout.template.data.parcoords.dimensiondefaults), sets + the default property values to use for elements of + parcoords.dimensions domain plotly.graph_objs.parcoords.Domain instance or dict with compatible properties @@ -894,8 +901,10 @@ def __init__( The dimensions (variables) of the parallel coordinates chart. 2..60 dimensions are supported. dimensiondefaults - plotly.graph_objs.parcoords.Dimension instance or dict - with compatible properties + When used in a template (as + layout.template.data.parcoords.dimensiondefaults), sets + the default property values to use for elements of + parcoords.dimensions domain plotly.graph_objs.parcoords.Domain instance or dict with compatible properties diff --git a/plotly/graph_objs/_splom.py b/plotly/graph_objs/_splom.py index 2df076449d8..9de52a71a3f 100644 --- a/plotly/graph_objs/_splom.py +++ b/plotly/graph_objs/_splom.py @@ -140,6 +140,10 @@ def dimensions(self, val): @property def dimensiondefaults(self): """ + When used in a template (as + layout.template.data.splom.dimensiondefaults), sets the default + property values to use for elements of splom.dimensions + The 'dimensiondefaults' property is an instance of Dimension that may be specified as: - An instance of plotly.graph_objs.splom.Dimension @@ -836,8 +840,10 @@ def _prop_descriptions(self): plotly.graph_objs.splom.Dimension instance or dict with compatible properties dimensiondefaults - plotly.graph_objs.splom.Dimension instance or dict with - compatible properties + When used in a template (as + layout.template.data.splom.dimensiondefaults), sets the + default property values to use for elements of + splom.dimensions hoverinfo Determines which trace information appear on hover. If `none` or `skip` are set, no information is displayed @@ -978,8 +984,10 @@ def __init__( plotly.graph_objs.splom.Dimension instance or dict with compatible properties dimensiondefaults - plotly.graph_objs.splom.Dimension instance or dict with - compatible properties + When used in a template (as + layout.template.data.splom.dimensiondefaults), sets the + default property values to use for elements of + splom.dimensions hoverinfo Determines which trace information appear on hover. If `none` or `skip` are set, no information is displayed diff --git a/plotly/graph_objs/_streamtube.py b/plotly/graph_objs/_streamtube.py index c2b6ba1c73e..6e9479ef544 100644 --- a/plotly/graph_objs/_streamtube.py +++ b/plotly/graph_objs/_streamtube.py @@ -238,9 +238,10 @@ def colorbar(self): tstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.streamtube.colorbar.Tickforma - tstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.streamtube.colorbar.tickformatstopdefaults), + sets the default property values to use for + elements of streamtube.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/_surface.py b/plotly/graph_objs/_surface.py index 4f946f4e537..7bb6c3e1051 100644 --- a/plotly/graph_objs/_surface.py +++ b/plotly/graph_objs/_surface.py @@ -237,8 +237,10 @@ def colorbar(self): plotly.graph_objs.surface.colorbar.Tickformatst op instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.surface.colorbar.Tickformatst - op instance or dict with compatible properties + When used in a template (as layout.template.dat + a.surface.colorbar.tickformatstopdefaults), + sets the default property values to use for + elements of surface.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/bar/_marker.py b/plotly/graph_objs/bar/_marker.py index 17a3e70f411..039af6cbe8a 100644 --- a/plotly/graph_objs/bar/_marker.py +++ b/plotly/graph_objs/bar/_marker.py @@ -308,9 +308,10 @@ def colorbar(self): tstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.bar.marker.colorbar.Tickforma - tstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.bar.marker.colorbar.tickformatstopdefaults), + sets the default property values to use for + elements of bar.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/bar/marker/_colorbar.py b/plotly/graph_objs/bar/marker/_colorbar.py index ecd34590dd9..1af94049b04 100644 --- a/plotly/graph_objs/bar/marker/_colorbar.py +++ b/plotly/graph_objs/bar/marker/_colorbar.py @@ -752,6 +752,10 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.data.bar.marker.col + orbar.tickformatstopdefaults), sets the default property values + to use for elements of bar.marker.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.bar.marker.colorbar.Tickformatstop @@ -1324,8 +1328,10 @@ def _prop_descriptions(self): plotly.graph_objs.bar.marker.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.bar.marker.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.bar.ma + rker.colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + bar.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1558,8 +1564,10 @@ def __init__( plotly.graph_objs.bar.marker.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.bar.marker.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.bar.ma + rker.colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + bar.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/barpolar/_marker.py b/plotly/graph_objs/barpolar/_marker.py index 963b0412932..cdb1f60cfef 100644 --- a/plotly/graph_objs/barpolar/_marker.py +++ b/plotly/graph_objs/barpolar/_marker.py @@ -308,9 +308,11 @@ def colorbar(self): formatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.barpolar.marker.colorbar.Tick - formatstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.barpolar.marker.colorbar.tickformatstopdefaul + ts), sets the default property values to use + for elements of + barpolar.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/barpolar/marker/_colorbar.py b/plotly/graph_objs/barpolar/marker/_colorbar.py index 17839e821ee..4c9cc792dda 100644 --- a/plotly/graph_objs/barpolar/marker/_colorbar.py +++ b/plotly/graph_objs/barpolar/marker/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.data.barpolar.marke + r.colorbar.tickformatstopdefaults), sets the default property + values to use for elements of + barpolar.marker.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.barpolar.marker.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.barpolar.marker.colorbar.Tickformatst op instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.barpolar.marker.colorbar.Tickformatst - op instance or dict with compatible properties + When used in a template (as layout.template.data.barpol + ar.marker.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + barpolar.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1559,8 +1566,10 @@ def __init__( plotly.graph_objs.barpolar.marker.colorbar.Tickformatst op instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.barpolar.marker.colorbar.Tickformatst - op instance or dict with compatible properties + When used in a template (as layout.template.data.barpol + ar.marker.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + barpolar.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/carpet/_aaxis.py b/plotly/graph_objs/carpet/_aaxis.py index 5369fcbc748..a7f24f03711 100644 --- a/plotly/graph_objs/carpet/_aaxis.py +++ b/plotly/graph_objs/carpet/_aaxis.py @@ -1240,6 +1240,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as + layout.template.data.carpet.aaxis.tickformatstopdefaults), sets + the default property values to use for elements of + carpet.aaxis.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.carpet.aaxis.Tickformatstop @@ -1677,8 +1682,10 @@ def _prop_descriptions(self): plotly.graph_objs.carpet.aaxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.carpet.aaxis.Tickformatstop instance - or dict with compatible properties + When used in a template (as layout.template.data.carpet + .aaxis.tickformatstopdefaults), sets the default + property values to use for elements of + carpet.aaxis.tickformatstops tickmode tickprefix @@ -1932,8 +1939,10 @@ def __init__( plotly.graph_objs.carpet.aaxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.carpet.aaxis.Tickformatstop instance - or dict with compatible properties + When used in a template (as layout.template.data.carpet + .aaxis.tickformatstopdefaults), sets the default + property values to use for elements of + carpet.aaxis.tickformatstops tickmode tickprefix diff --git a/plotly/graph_objs/carpet/_baxis.py b/plotly/graph_objs/carpet/_baxis.py index 1e2b5ba1dad..480b12fef52 100644 --- a/plotly/graph_objs/carpet/_baxis.py +++ b/plotly/graph_objs/carpet/_baxis.py @@ -1240,6 +1240,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as + layout.template.data.carpet.baxis.tickformatstopdefaults), sets + the default property values to use for elements of + carpet.baxis.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.carpet.baxis.Tickformatstop @@ -1677,8 +1682,10 @@ def _prop_descriptions(self): plotly.graph_objs.carpet.baxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.carpet.baxis.Tickformatstop instance - or dict with compatible properties + When used in a template (as layout.template.data.carpet + .baxis.tickformatstopdefaults), sets the default + property values to use for elements of + carpet.baxis.tickformatstops tickmode tickprefix @@ -1932,8 +1939,10 @@ def __init__( plotly.graph_objs.carpet.baxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.carpet.baxis.Tickformatstop instance - or dict with compatible properties + When used in a template (as layout.template.data.carpet + .baxis.tickformatstopdefaults), sets the default + property values to use for elements of + carpet.baxis.tickformatstops tickmode tickprefix diff --git a/plotly/graph_objs/choropleth/_colorbar.py b/plotly/graph_objs/choropleth/_colorbar.py index eeb73f94439..b9bce6a9b79 100644 --- a/plotly/graph_objs/choropleth/_colorbar.py +++ b/plotly/graph_objs/choropleth/_colorbar.py @@ -752,6 +752,10 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.data.choropleth.col + orbar.tickformatstopdefaults), sets the default property values + to use for elements of choropleth.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.choropleth.colorbar.Tickformatstop @@ -1324,8 +1328,10 @@ def _prop_descriptions(self): plotly.graph_objs.choropleth.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.choropleth.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.chorop + leth.colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + choropleth.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1558,8 +1564,10 @@ def __init__( plotly.graph_objs.choropleth.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.choropleth.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.chorop + leth.colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + choropleth.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/cone/_colorbar.py b/plotly/graph_objs/cone/_colorbar.py index 4e46bb4609e..332c0caef13 100644 --- a/plotly/graph_objs/cone/_colorbar.py +++ b/plotly/graph_objs/cone/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as + layout.template.data.cone.colorbar.tickformatstopdefaults), + sets the default property values to use for elements of + cone.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.cone.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.cone.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.cone.colorbar.Tickformatstop instance - or dict with compatible properties + When used in a template (as layout.template.data.cone.c + olorbar.tickformatstopdefaults), sets the default + property values to use for elements of + cone.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1558,8 +1565,10 @@ def __init__( plotly.graph_objs.cone.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.cone.colorbar.Tickformatstop instance - or dict with compatible properties + When used in a template (as layout.template.data.cone.c + olorbar.tickformatstopdefaults), sets the default + property values to use for elements of + cone.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/contour/_colorbar.py b/plotly/graph_objs/contour/_colorbar.py index 241fdb08f37..2d70947a19a 100644 --- a/plotly/graph_objs/contour/_colorbar.py +++ b/plotly/graph_objs/contour/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as + layout.template.data.contour.colorbar.tickformatstopdefaults), + sets the default property values to use for elements of + contour.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.contour.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.contour.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.contour.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.contou + r.colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + contour.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1558,8 +1565,10 @@ def __init__( plotly.graph_objs.contour.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.contour.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.contou + r.colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + contour.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/contourcarpet/_colorbar.py b/plotly/graph_objs/contourcarpet/_colorbar.py index d72286f8ca0..992b8103a85 100644 --- a/plotly/graph_objs/contourcarpet/_colorbar.py +++ b/plotly/graph_objs/contourcarpet/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.data.contourcarpet. + colorbar.tickformatstopdefaults), sets the default property + values to use for elements of + contourcarpet.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.contourcarpet.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.contourcarpet.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.contourcarpet.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.contou + rcarpet.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + contourcarpet.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1558,8 +1565,10 @@ def __init__( plotly.graph_objs.contourcarpet.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.contourcarpet.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.contou + rcarpet.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + contourcarpet.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/heatmap/_colorbar.py b/plotly/graph_objs/heatmap/_colorbar.py index d4d2e44e71e..3c413dcd88c 100644 --- a/plotly/graph_objs/heatmap/_colorbar.py +++ b/plotly/graph_objs/heatmap/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as + layout.template.data.heatmap.colorbar.tickformatstopdefaults), + sets the default property values to use for elements of + heatmap.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.heatmap.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.heatmap.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.heatmap.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.heatma + p.colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + heatmap.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1558,8 +1565,10 @@ def __init__( plotly.graph_objs.heatmap.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.heatmap.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.heatma + p.colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + heatmap.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/heatmapgl/_colorbar.py b/plotly/graph_objs/heatmapgl/_colorbar.py index 740cb375dcb..3acb2c73c0d 100644 --- a/plotly/graph_objs/heatmapgl/_colorbar.py +++ b/plotly/graph_objs/heatmapgl/_colorbar.py @@ -752,6 +752,10 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.data.heatmapgl.colo + rbar.tickformatstopdefaults), sets the default property values + to use for elements of heatmapgl.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.heatmapgl.colorbar.Tickformatstop @@ -1324,8 +1328,10 @@ def _prop_descriptions(self): plotly.graph_objs.heatmapgl.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.heatmapgl.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.heatma + pgl.colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + heatmapgl.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1558,8 +1564,10 @@ def __init__( plotly.graph_objs.heatmapgl.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.heatmapgl.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.heatma + pgl.colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + heatmapgl.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/histogram/_marker.py b/plotly/graph_objs/histogram/_marker.py index 97e129641b2..7e5457ae381 100644 --- a/plotly/graph_objs/histogram/_marker.py +++ b/plotly/graph_objs/histogram/_marker.py @@ -308,9 +308,11 @@ def colorbar(self): kformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.histogram.marker.colorbar.Tic - kformatstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.histogram.marker.colorbar.tickformatstopdefau + lts), sets the default property values to use + for elements of + histogram.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/histogram/marker/_colorbar.py b/plotly/graph_objs/histogram/marker/_colorbar.py index 69774ce6d4e..c4c87863707 100644 --- a/plotly/graph_objs/histogram/marker/_colorbar.py +++ b/plotly/graph_objs/histogram/marker/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.data.histogram.mark + er.colorbar.tickformatstopdefaults), sets the default property + values to use for elements of + histogram.marker.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.histogram.marker.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.histogram.marker.colorbar.Tickformats top instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.histogram.marker.colorbar.Tickformats - top instance or dict with compatible properties + When used in a template (as layout.template.data.histog + ram.marker.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + histogram.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1559,8 +1566,10 @@ def __init__( plotly.graph_objs.histogram.marker.colorbar.Tickformats top instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.histogram.marker.colorbar.Tickformats - top instance or dict with compatible properties + When used in a template (as layout.template.data.histog + ram.marker.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + histogram.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/histogram2d/_colorbar.py b/plotly/graph_objs/histogram2d/_colorbar.py index a31a062eb61..514e6146c35 100644 --- a/plotly/graph_objs/histogram2d/_colorbar.py +++ b/plotly/graph_objs/histogram2d/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.data.histogram2d.co + lorbar.tickformatstopdefaults), sets the default property + values to use for elements of + histogram2d.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.histogram2d.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.histogram2d.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.histogram2d.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.histog + ram2d.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + histogram2d.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1558,8 +1565,10 @@ def __init__( plotly.graph_objs.histogram2d.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.histogram2d.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.histog + ram2d.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + histogram2d.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/histogram2dcontour/_colorbar.py b/plotly/graph_objs/histogram2dcontour/_colorbar.py index a9e9116eeda..2f807460769 100644 --- a/plotly/graph_objs/histogram2dcontour/_colorbar.py +++ b/plotly/graph_objs/histogram2dcontour/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.data.histogram2dcon + tour.colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + histogram2dcontour.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.histogram2dcontour.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.histogram2dcontour.colorbar.Tickforma tstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.histogram2dcontour.colorbar.Tickforma - tstop instance or dict with compatible properties + When used in a template (as layout.template.data.histog + ram2dcontour.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + histogram2dcontour.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1559,8 +1566,10 @@ def __init__( plotly.graph_objs.histogram2dcontour.colorbar.Tickforma tstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.histogram2dcontour.colorbar.Tickforma - tstop instance or dict with compatible properties + When used in a template (as layout.template.data.histog + ram2dcontour.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + histogram2dcontour.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/layout/_mapbox.py b/plotly/graph_objs/layout/_mapbox.py index d8a998741e9..595e579639f 100644 --- a/plotly/graph_objs/layout/_mapbox.py +++ b/plotly/graph_objs/layout/_mapbox.py @@ -210,6 +210,10 @@ def layers(self, val): @property def layerdefaults(self): """ + When used in a template (as + layout.template.layout.mapbox.layerdefaults), sets the default + property values to use for elements of layout.mapbox.layers + The 'layerdefaults' property is an instance of Layer that may be specified as: - An instance of plotly.graph_objs.layout.mapbox.Layer @@ -318,8 +322,10 @@ def _prop_descriptions(self): plotly.graph_objs.layout.mapbox.Layer instance or dict with compatible properties layerdefaults - plotly.graph_objs.layout.mapbox.Layer instance or dict - with compatible properties + When used in a template (as + layout.template.layout.mapbox.layerdefaults), sets the + default property values to use for elements of + layout.mapbox.layers pitch Sets the pitch angle of the map (in degrees, where 0 means perpendicular to the surface of the map). @@ -370,8 +376,10 @@ def __init__( plotly.graph_objs.layout.mapbox.Layer instance or dict with compatible properties layerdefaults - plotly.graph_objs.layout.mapbox.Layer instance or dict - with compatible properties + When used in a template (as + layout.template.layout.mapbox.layerdefaults), sets the + default property values to use for elements of + layout.mapbox.layers pitch Sets the pitch angle of the map (in degrees, where 0 means perpendicular to the surface of the map). diff --git a/plotly/graph_objs/layout/_polar.py b/plotly/graph_objs/layout/_polar.py index e6e90c7ef83..b043ab189ab 100644 --- a/plotly/graph_objs/layout/_polar.py +++ b/plotly/graph_objs/layout/_polar.py @@ -199,9 +199,11 @@ def angularaxis(self): formatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.polar.angularaxis.Tick - formatstop instance or dict with compatible - properties + When used in a template (as layout.template.lay + out.polar.angularaxis.tickformatstopdefaults), + sets the default property values to use for + elements of + layout.polar.angularaxis.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -669,9 +671,11 @@ def radialaxis(self): ormatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.polar.radialaxis.Tickf - ormatstop instance or dict with compatible - properties + When used in a template (as layout.template.lay + out.polar.radialaxis.tickformatstopdefaults), + sets the default property values to use for + elements of + layout.polar.radialaxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/layout/_scene.py b/plotly/graph_objs/layout/_scene.py index 826ca165ebe..e51ec1c7366 100644 --- a/plotly/graph_objs/layout/_scene.py +++ b/plotly/graph_objs/layout/_scene.py @@ -210,6 +210,11 @@ def annotations(self, val): @property def annotationdefaults(self): """ + When used in a template (as + layout.template.layout.scene.annotationdefaults), sets the + default property values to use for elements of + layout.scene.annotations + The 'annotationdefaults' property is an instance of Annotation that may be specified as: - An instance of plotly.graph_objs.layout.scene.Annotation @@ -687,9 +692,10 @@ def xaxis(self): stop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.scene.xaxis.Tickformat - stop instance or dict with compatible - properties + When used in a template (as layout.template.lay + out.scene.xaxis.tickformatstopdefaults), sets + the default property values to use for elements + of layout.scene.xaxis.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -986,9 +992,10 @@ def yaxis(self): stop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.scene.yaxis.Tickformat - stop instance or dict with compatible - properties + When used in a template (as layout.template.lay + out.scene.yaxis.tickformatstopdefaults), sets + the default property values to use for elements + of layout.scene.yaxis.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1285,9 +1292,10 @@ def zaxis(self): stop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.scene.zaxis.Tickformat - stop instance or dict with compatible - properties + When used in a template (as layout.template.lay + out.scene.zaxis.tickformatstopdefaults), sets + the default property values to use for elements + of layout.scene.zaxis.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1375,8 +1383,10 @@ def _prop_descriptions(self): plotly.graph_objs.layout.scene.Annotation instance or dict with compatible properties annotationdefaults - plotly.graph_objs.layout.scene.Annotation instance or - dict with compatible properties + When used in a template (as + layout.template.layout.scene.annotationdefaults), sets + the default property values to use for elements of + layout.scene.annotations aspectmode If "cube", this scene's axes are drawn as a cube, regardless of the axes' ranges. If "data", this scene's @@ -1444,8 +1454,10 @@ def __init__( plotly.graph_objs.layout.scene.Annotation instance or dict with compatible properties annotationdefaults - plotly.graph_objs.layout.scene.Annotation instance or - dict with compatible properties + When used in a template (as + layout.template.layout.scene.annotationdefaults), sets + the default property values to use for elements of + layout.scene.annotations aspectmode If "cube", this scene's axes are drawn as a cube, regardless of the axes' ranges. If "data", this scene's diff --git a/plotly/graph_objs/layout/_slider.py b/plotly/graph_objs/layout/_slider.py index f20f2a84f10..9cfcfe82f18 100644 --- a/plotly/graph_objs/layout/_slider.py +++ b/plotly/graph_objs/layout/_slider.py @@ -517,6 +517,10 @@ def steps(self, val): @property def stepdefaults(self): """ + When used in a template (as + layout.template.layout.slider.stepdefaults), sets the default + property values to use for elements of layout.slider.steps + The 'stepdefaults' property is an instance of Step that may be specified as: - An instance of plotly.graph_objs.layout.slider.Step @@ -852,8 +856,10 @@ def _prop_descriptions(self): plotly.graph_objs.layout.slider.Step instance or dict with compatible properties stepdefaults - plotly.graph_objs.layout.slider.Step instance or dict - with compatible properties + When used in a template (as + layout.template.layout.slider.stepdefaults), sets the + default property values to use for elements of + layout.slider.steps templateitemname Used to refer to a named item in this array in the template. Named items from the template will be created @@ -972,8 +978,10 @@ def __init__( plotly.graph_objs.layout.slider.Step instance or dict with compatible properties stepdefaults - plotly.graph_objs.layout.slider.Step instance or dict - with compatible properties + When used in a template (as + layout.template.layout.slider.stepdefaults), sets the + default property values to use for elements of + layout.slider.steps templateitemname Used to refer to a named item in this array in the template. Named items from the template will be created diff --git a/plotly/graph_objs/layout/_template.py b/plotly/graph_objs/layout/_template.py index fdaa74db5d6..625291dddbc 100644 --- a/plotly/graph_objs/layout/_template.py +++ b/plotly/graph_objs/layout/_template.py @@ -186,6 +186,26 @@ def __init__(self, arg=None, data=None, layout=None, **kwargs): """ Construct a new Template object + Default attributes to be applied to the plot. This should be a + dict with format: `{'layout': layoutTemplate, 'data': + {trace_type: [traceTemplate, ...], ...}}` where + `layoutTemplate` is a dict matching the structure of + `figure.layout` and `traceTemplate` is a dict matching the + structure of the trace with type `trace_type` (e.g. 'scatter'). + Alternatively, this may be specified as an instance of + plotly.graph_objs.layout.Template. Trace templates are applied + cyclically to traces of each type. Container arrays (eg + `annotations`) have special handling: An object ending in + `defaults` (eg `annotationdefaults`) is applied to each array + item. But if an item has a `templateitemname` key we look in + the template array for an item with matching `name` and apply + that instead. If no matching `name` is found we mark the item + invisible. Any named template item not referenced is appended + to the end of the array, so this can be used to add a watermark + annotation or a logo image, for example. To omit one of these + items on the plot, make an item with matching + `templateitemname` and `visible: false`. + Parameters ---------- arg diff --git a/plotly/graph_objs/layout/_ternary.py b/plotly/graph_objs/layout/_ternary.py index 63b768807b1..ca3a385385d 100644 --- a/plotly/graph_objs/layout/_ternary.py +++ b/plotly/graph_objs/layout/_ternary.py @@ -163,9 +163,10 @@ def aaxis(self): atstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.ternary.aaxis.Tickform - atstop instance or dict with compatible - properties + When used in a template (as layout.template.lay + out.ternary.aaxis.tickformatstopdefaults), sets + the default property values to use for elements + of layout.ternary.aaxis.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -379,9 +380,10 @@ def baxis(self): atstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.ternary.baxis.Tickform - atstop instance or dict with compatible - properties + When used in a template (as layout.template.lay + out.ternary.baxis.tickformatstopdefaults), sets + the default property values to use for elements + of layout.ternary.baxis.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -654,9 +656,10 @@ def caxis(self): atstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.ternary.caxis.Tickform - atstop instance or dict with compatible - properties + When used in a template (as layout.template.lay + out.ternary.caxis.tickformatstopdefaults), sets + the default property values to use for elements + of layout.ternary.caxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/layout/_updatemenu.py b/plotly/graph_objs/layout/_updatemenu.py index 4376c830ded..ca434b484f7 100644 --- a/plotly/graph_objs/layout/_updatemenu.py +++ b/plotly/graph_objs/layout/_updatemenu.py @@ -240,6 +240,11 @@ def buttons(self, val): @property def buttondefaults(self): """ + When used in a template (as + layout.template.layout.updatemenu.buttondefaults), sets the + default property values to use for elements of + layout.updatemenu.buttons + The 'buttondefaults' property is an instance of Button that may be specified as: - An instance of plotly.graph_objs.layout.updatemenu.Button @@ -596,8 +601,10 @@ def _prop_descriptions(self): plotly.graph_objs.layout.updatemenu.Button instance or dict with compatible properties buttondefaults - plotly.graph_objs.layout.updatemenu.Button instance or - dict with compatible properties + When used in a template (as + layout.template.layout.updatemenu.buttondefaults), sets + the default property values to use for elements of + layout.updatemenu.buttons direction Determines the direction in which the buttons are laid out, whether in a dropdown menu or a row/column of @@ -697,8 +704,10 @@ def __init__( plotly.graph_objs.layout.updatemenu.Button instance or dict with compatible properties buttondefaults - plotly.graph_objs.layout.updatemenu.Button instance or - dict with compatible properties + When used in a template (as + layout.template.layout.updatemenu.buttondefaults), sets + the default property values to use for elements of + layout.updatemenu.buttons direction Determines the direction in which the buttons are laid out, whether in a dropdown menu or a row/column of diff --git a/plotly/graph_objs/layout/_xaxis.py b/plotly/graph_objs/layout/_xaxis.py index 6a972cc493f..94dfafafcd7 100644 --- a/plotly/graph_objs/layout/_xaxis.py +++ b/plotly/graph_objs/layout/_xaxis.py @@ -790,9 +790,10 @@ def rangeselector(self): default, a range selector comes with no buttons. buttondefaults - plotly.graph_objs.layout.xaxis.rangeselector.Bu - tton instance or dict with compatible - properties + When used in a template (as layout.template.lay + out.xaxis.rangeselector.buttondefaults), sets + the default property values to use for elements + of layout.xaxis.rangeselector.buttons font Sets the font of the range selector button text. @@ -1537,6 +1538,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as + layout.template.layout.xaxis.tickformatstopdefaults), sets the + default property values to use for elements of + layout.xaxis.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.layout.xaxis.Tickformatstop @@ -2265,8 +2271,10 @@ def _prop_descriptions(self): plotly.graph_objs.layout.xaxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.xaxis.Tickformatstop instance - or dict with compatible properties + When used in a template (as + layout.template.layout.xaxis.tickformatstopdefaults), + sets the default property values to use for elements of + layout.xaxis.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -2675,8 +2683,10 @@ def __init__( plotly.graph_objs.layout.xaxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.xaxis.Tickformatstop instance - or dict with compatible properties + When used in a template (as + layout.template.layout.xaxis.tickformatstopdefaults), + sets the default property values to use for elements of + layout.xaxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/layout/_yaxis.py b/plotly/graph_objs/layout/_yaxis.py index 1d10bd33492..5300c1e4671 100644 --- a/plotly/graph_objs/layout/_yaxis.py +++ b/plotly/graph_objs/layout/_yaxis.py @@ -1412,6 +1412,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as + layout.template.layout.yaxis.tickformatstopdefaults), sets the + default property values to use for elements of + layout.yaxis.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.layout.yaxis.Tickformatstop @@ -2134,8 +2139,10 @@ def _prop_descriptions(self): plotly.graph_objs.layout.yaxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.yaxis.Tickformatstop instance - or dict with compatible properties + When used in a template (as + layout.template.layout.yaxis.tickformatstopdefaults), + sets the default property values to use for elements of + layout.yaxis.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -2536,8 +2543,10 @@ def __init__( plotly.graph_objs.layout.yaxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.yaxis.Tickformatstop instance - or dict with compatible properties + When used in a template (as + layout.template.layout.yaxis.tickformatstopdefaults), + sets the default property values to use for elements of + layout.yaxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/layout/polar/_angularaxis.py b/plotly/graph_objs/layout/polar/_angularaxis.py index b0a7ef0e484..2a386974bfb 100644 --- a/plotly/graph_objs/layout/polar/_angularaxis.py +++ b/plotly/graph_objs/layout/polar/_angularaxis.py @@ -927,6 +927,10 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.layout.polar.angula + raxis.tickformatstopdefaults), sets the default property values + to use for elements of layout.polar.angularaxis.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.layout.polar.angularaxis.Tickformatstop @@ -1377,8 +1381,10 @@ def _prop_descriptions(self): plotly.graph_objs.layout.polar.angularaxis.Tickformatst op instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.polar.angularaxis.Tickformatst - op instance or dict with compatible properties + When used in a template (as layout.template.layout.pola + r.angularaxis.tickformatstopdefaults), sets the default + property values to use for elements of + layout.polar.angularaxis.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1640,8 +1646,10 @@ def __init__( plotly.graph_objs.layout.polar.angularaxis.Tickformatst op instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.polar.angularaxis.Tickformatst - op instance or dict with compatible properties + When used in a template (as layout.template.layout.pola + r.angularaxis.tickformatstopdefaults), sets the default + property values to use for elements of + layout.polar.angularaxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/layout/polar/_radialaxis.py b/plotly/graph_objs/layout/polar/_radialaxis.py index 9512967b788..2f2c47064eb 100644 --- a/plotly/graph_objs/layout/polar/_radialaxis.py +++ b/plotly/graph_objs/layout/polar/_radialaxis.py @@ -989,6 +989,10 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.layout.polar.radial + axis.tickformatstopdefaults), sets the default property values + to use for elements of layout.polar.radialaxis.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.layout.polar.radialaxis.Tickformatstop @@ -1524,8 +1528,10 @@ def _prop_descriptions(self): plotly.graph_objs.layout.polar.radialaxis.Tickformatsto p instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.polar.radialaxis.Tickformatsto - p instance or dict with compatible properties + When used in a template (as layout.template.layout.pola + r.radialaxis.tickformatstopdefaults), sets the default + property values to use for elements of + layout.polar.radialaxis.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1814,8 +1820,10 @@ def __init__( plotly.graph_objs.layout.polar.radialaxis.Tickformatsto p instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.polar.radialaxis.Tickformatsto - p instance or dict with compatible properties + When used in a template (as layout.template.layout.pola + r.radialaxis.tickformatstopdefaults), sets the default + property values to use for elements of + layout.polar.radialaxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/layout/scene/_xaxis.py b/plotly/graph_objs/layout/scene/_xaxis.py index 7a84fc1034f..e4617916b58 100644 --- a/plotly/graph_objs/layout/scene/_xaxis.py +++ b/plotly/graph_objs/layout/scene/_xaxis.py @@ -1161,6 +1161,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as + layout.template.layout.scene.xaxis.tickformatstopdefaults), + sets the default property values to use for elements of + layout.scene.xaxis.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.layout.scene.xaxis.Tickformatstop @@ -1806,8 +1811,10 @@ def _prop_descriptions(self): plotly.graph_objs.layout.scene.xaxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.scene.xaxis.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.layout.scen + e.xaxis.tickformatstopdefaults), sets the default + property values to use for elements of + layout.scene.xaxis.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -2120,8 +2127,10 @@ def __init__( plotly.graph_objs.layout.scene.xaxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.scene.xaxis.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.layout.scen + e.xaxis.tickformatstopdefaults), sets the default + property values to use for elements of + layout.scene.xaxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/layout/scene/_yaxis.py b/plotly/graph_objs/layout/scene/_yaxis.py index 2f235d8213f..bf6edaa64b7 100644 --- a/plotly/graph_objs/layout/scene/_yaxis.py +++ b/plotly/graph_objs/layout/scene/_yaxis.py @@ -1161,6 +1161,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as + layout.template.layout.scene.yaxis.tickformatstopdefaults), + sets the default property values to use for elements of + layout.scene.yaxis.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.layout.scene.yaxis.Tickformatstop @@ -1806,8 +1811,10 @@ def _prop_descriptions(self): plotly.graph_objs.layout.scene.yaxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.scene.yaxis.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.layout.scen + e.yaxis.tickformatstopdefaults), sets the default + property values to use for elements of + layout.scene.yaxis.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -2120,8 +2127,10 @@ def __init__( plotly.graph_objs.layout.scene.yaxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.scene.yaxis.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.layout.scen + e.yaxis.tickformatstopdefaults), sets the default + property values to use for elements of + layout.scene.yaxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/layout/scene/_zaxis.py b/plotly/graph_objs/layout/scene/_zaxis.py index aa5879cc3fa..0a0d57047d9 100644 --- a/plotly/graph_objs/layout/scene/_zaxis.py +++ b/plotly/graph_objs/layout/scene/_zaxis.py @@ -1161,6 +1161,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as + layout.template.layout.scene.zaxis.tickformatstopdefaults), + sets the default property values to use for elements of + layout.scene.zaxis.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.layout.scene.zaxis.Tickformatstop @@ -1806,8 +1811,10 @@ def _prop_descriptions(self): plotly.graph_objs.layout.scene.zaxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.scene.zaxis.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.layout.scen + e.zaxis.tickformatstopdefaults), sets the default + property values to use for elements of + layout.scene.zaxis.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -2120,8 +2127,10 @@ def __init__( plotly.graph_objs.layout.scene.zaxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.scene.zaxis.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.layout.scen + e.zaxis.tickformatstopdefaults), sets the default + property values to use for elements of + layout.scene.zaxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/layout/ternary/_aaxis.py b/plotly/graph_objs/layout/ternary/_aaxis.py index 6596bc09a1f..cdad3380015 100644 --- a/plotly/graph_objs/layout/ternary/_aaxis.py +++ b/plotly/graph_objs/layout/ternary/_aaxis.py @@ -784,6 +784,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as + layout.template.layout.ternary.aaxis.tickformatstopdefaults), + sets the default property values to use for elements of + layout.ternary.aaxis.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.layout.ternary.aaxis.Tickformatstop @@ -1223,8 +1228,10 @@ def _prop_descriptions(self): plotly.graph_objs.layout.ternary.aaxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.ternary.aaxis.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.layout.tern + ary.aaxis.tickformatstopdefaults), sets the default + property values to use for elements of + layout.ternary.aaxis.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1443,8 +1450,10 @@ def __init__( plotly.graph_objs.layout.ternary.aaxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.ternary.aaxis.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.layout.tern + ary.aaxis.tickformatstopdefaults), sets the default + property values to use for elements of + layout.ternary.aaxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/layout/ternary/_baxis.py b/plotly/graph_objs/layout/ternary/_baxis.py index 6dc282ab4f2..20461cef66c 100644 --- a/plotly/graph_objs/layout/ternary/_baxis.py +++ b/plotly/graph_objs/layout/ternary/_baxis.py @@ -784,6 +784,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as + layout.template.layout.ternary.baxis.tickformatstopdefaults), + sets the default property values to use for elements of + layout.ternary.baxis.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.layout.ternary.baxis.Tickformatstop @@ -1223,8 +1228,10 @@ def _prop_descriptions(self): plotly.graph_objs.layout.ternary.baxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.ternary.baxis.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.layout.tern + ary.baxis.tickformatstopdefaults), sets the default + property values to use for elements of + layout.ternary.baxis.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1443,8 +1450,10 @@ def __init__( plotly.graph_objs.layout.ternary.baxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.ternary.baxis.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.layout.tern + ary.baxis.tickformatstopdefaults), sets the default + property values to use for elements of + layout.ternary.baxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/layout/ternary/_caxis.py b/plotly/graph_objs/layout/ternary/_caxis.py index 5e544a45d28..2f3cce71857 100644 --- a/plotly/graph_objs/layout/ternary/_caxis.py +++ b/plotly/graph_objs/layout/ternary/_caxis.py @@ -784,6 +784,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as + layout.template.layout.ternary.caxis.tickformatstopdefaults), + sets the default property values to use for elements of + layout.ternary.caxis.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.layout.ternary.caxis.Tickformatstop @@ -1223,8 +1228,10 @@ def _prop_descriptions(self): plotly.graph_objs.layout.ternary.caxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.ternary.caxis.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.layout.tern + ary.caxis.tickformatstopdefaults), sets the default + property values to use for elements of + layout.ternary.caxis.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1443,8 +1450,10 @@ def __init__( plotly.graph_objs.layout.ternary.caxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.ternary.caxis.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.layout.tern + ary.caxis.tickformatstopdefaults), sets the default + property values to use for elements of + layout.ternary.caxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/layout/xaxis/_rangeselector.py b/plotly/graph_objs/layout/xaxis/_rangeselector.py index 44482d3c18e..e32823870d8 100644 --- a/plotly/graph_objs/layout/xaxis/_rangeselector.py +++ b/plotly/graph_objs/layout/xaxis/_rangeselector.py @@ -279,6 +279,11 @@ def buttons(self, val): @property def buttondefaults(self): """ + When used in a template (as + layout.template.layout.xaxis.rangeselector.buttondefaults), + sets the default property values to use for elements of + layout.xaxis.rangeselector.buttons + The 'buttondefaults' property is an instance of Button that may be specified as: - An instance of plotly.graph_objs.layout.xaxis.rangeselector.Button @@ -479,8 +484,10 @@ def _prop_descriptions(self): Sets the specifications for each buttons. By default, a range selector comes with no buttons. buttondefaults - plotly.graph_objs.layout.xaxis.rangeselector.Button - instance or dict with compatible properties + When used in a template (as layout.template.layout.xaxi + s.rangeselector.buttondefaults), sets the default + property values to use for elements of + layout.xaxis.rangeselector.buttons font Sets the font of the range selector button text. visible @@ -545,8 +552,10 @@ def __init__( Sets the specifications for each buttons. By default, a range selector comes with no buttons. buttondefaults - plotly.graph_objs.layout.xaxis.rangeselector.Button - instance or dict with compatible properties + When used in a template (as layout.template.layout.xaxi + s.rangeselector.buttondefaults), sets the default + property values to use for elements of + layout.xaxis.rangeselector.buttons font Sets the font of the range selector button text. visible diff --git a/plotly/graph_objs/mesh3d/_colorbar.py b/plotly/graph_objs/mesh3d/_colorbar.py index e6663efb292..4a20e6783f2 100644 --- a/plotly/graph_objs/mesh3d/_colorbar.py +++ b/plotly/graph_objs/mesh3d/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as + layout.template.data.mesh3d.colorbar.tickformatstopdefaults), + sets the default property values to use for elements of + mesh3d.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.mesh3d.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.mesh3d.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.mesh3d.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.mesh3d + .colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + mesh3d.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1558,8 +1565,10 @@ def __init__( plotly.graph_objs.mesh3d.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.mesh3d.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.mesh3d + .colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + mesh3d.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/parcoords/_line.py b/plotly/graph_objs/parcoords/_line.py index 25991403e57..2bd3b35afae 100644 --- a/plotly/graph_objs/parcoords/_line.py +++ b/plotly/graph_objs/parcoords/_line.py @@ -307,9 +307,11 @@ def colorbar(self): ormatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.parcoords.line.colorbar.Tickf - ormatstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.parcoords.line.colorbar.tickformatstopdefault + s), sets the default property values to use for + elements of + parcoords.line.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/parcoords/line/_colorbar.py b/plotly/graph_objs/parcoords/line/_colorbar.py index ed2eaecbc85..7c9c78d8694 100644 --- a/plotly/graph_objs/parcoords/line/_colorbar.py +++ b/plotly/graph_objs/parcoords/line/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.data.parcoords.line + .colorbar.tickformatstopdefaults), sets the default property + values to use for elements of + parcoords.line.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.parcoords.line.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.parcoords.line.colorbar.Tickformatsto p instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.parcoords.line.colorbar.Tickformatsto - p instance or dict with compatible properties + When used in a template (as layout.template.data.parcoo + rds.line.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + parcoords.line.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1559,8 +1566,10 @@ def __init__( plotly.graph_objs.parcoords.line.colorbar.Tickformatsto p instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.parcoords.line.colorbar.Tickformatsto - p instance or dict with compatible properties + When used in a template (as layout.template.data.parcoo + rds.line.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + parcoords.line.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scatter/_marker.py b/plotly/graph_objs/scatter/_marker.py index 9109d1f4d25..998185b217c 100644 --- a/plotly/graph_objs/scatter/_marker.py +++ b/plotly/graph_objs/scatter/_marker.py @@ -308,9 +308,11 @@ def colorbar(self): ormatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scatter.marker.colorbar.Tickf - ormatstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.scatter.marker.colorbar.tickformatstopdefault + s), sets the default property values to use for + elements of + scatter.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scatter/marker/_colorbar.py b/plotly/graph_objs/scatter/marker/_colorbar.py index e7b0371f1c0..ac11da6ecb1 100644 --- a/plotly/graph_objs/scatter/marker/_colorbar.py +++ b/plotly/graph_objs/scatter/marker/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.data.scatter.marker + .colorbar.tickformatstopdefaults), sets the default property + values to use for elements of + scatter.marker.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.scatter.marker.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.scatter.marker.colorbar.Tickformatsto p instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scatter.marker.colorbar.Tickformatsto - p instance or dict with compatible properties + When used in a template (as layout.template.data.scatte + r.marker.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + scatter.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1559,8 +1566,10 @@ def __init__( plotly.graph_objs.scatter.marker.colorbar.Tickformatsto p instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scatter.marker.colorbar.Tickformatsto - p instance or dict with compatible properties + When used in a template (as layout.template.data.scatte + r.marker.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + scatter.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scatter3d/_marker.py b/plotly/graph_objs/scatter3d/_marker.py index b4f9fd0d458..7a6be276400 100644 --- a/plotly/graph_objs/scatter3d/_marker.py +++ b/plotly/graph_objs/scatter3d/_marker.py @@ -308,9 +308,11 @@ def colorbar(self): kformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scatter3d.marker.colorbar.Tic - kformatstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.scatter3d.marker.colorbar.tickformatstopdefau + lts), sets the default property values to use + for elements of + scatter3d.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scatter3d/marker/_colorbar.py b/plotly/graph_objs/scatter3d/marker/_colorbar.py index 005c1369040..95b8a76fdb8 100644 --- a/plotly/graph_objs/scatter3d/marker/_colorbar.py +++ b/plotly/graph_objs/scatter3d/marker/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.data.scatter3d.mark + er.colorbar.tickformatstopdefaults), sets the default property + values to use for elements of + scatter3d.marker.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.scatter3d.marker.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.scatter3d.marker.colorbar.Tickformats top instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scatter3d.marker.colorbar.Tickformats - top instance or dict with compatible properties + When used in a template (as layout.template.data.scatte + r3d.marker.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + scatter3d.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1559,8 +1566,10 @@ def __init__( plotly.graph_objs.scatter3d.marker.colorbar.Tickformats top instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scatter3d.marker.colorbar.Tickformats - top instance or dict with compatible properties + When used in a template (as layout.template.data.scatte + r3d.marker.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + scatter3d.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scattercarpet/_marker.py b/plotly/graph_objs/scattercarpet/_marker.py index 3375fd91c75..22ccf4eeff9 100644 --- a/plotly/graph_objs/scattercarpet/_marker.py +++ b/plotly/graph_objs/scattercarpet/_marker.py @@ -308,9 +308,11 @@ def colorbar(self): .Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scattercarpet.marker.colorbar - .Tickformatstop instance or dict with - compatible properties + When used in a template (as layout.template.dat + a.scattercarpet.marker.colorbar.tickformatstopd + efaults), sets the default property values to + use for elements of + scattercarpet.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scattercarpet/marker/_colorbar.py b/plotly/graph_objs/scattercarpet/marker/_colorbar.py index dd21307ee6a..58d279636c7 100644 --- a/plotly/graph_objs/scattercarpet/marker/_colorbar.py +++ b/plotly/graph_objs/scattercarpet/marker/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.data.scattercarpet. + marker.colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + scattercarpet.marker.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.scattercarpet.marker.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.scattercarpet.marker.colorbar.Tickfor matstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scattercarpet.marker.colorbar.Tickfor - matstop instance or dict with compatible properties + When used in a template (as layout.template.data.scatte + rcarpet.marker.colorbar.tickformatstopdefaults), sets + the default property values to use for elements of + scattercarpet.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1559,8 +1566,10 @@ def __init__( plotly.graph_objs.scattercarpet.marker.colorbar.Tickfor matstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scattercarpet.marker.colorbar.Tickfor - matstop instance or dict with compatible properties + When used in a template (as layout.template.data.scatte + rcarpet.marker.colorbar.tickformatstopdefaults), sets + the default property values to use for elements of + scattercarpet.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scattergeo/_marker.py b/plotly/graph_objs/scattergeo/_marker.py index 5870b4f9626..40001bf26a3 100644 --- a/plotly/graph_objs/scattergeo/_marker.py +++ b/plotly/graph_objs/scattergeo/_marker.py @@ -308,9 +308,11 @@ def colorbar(self): ckformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scattergeo.marker.colorbar.Ti - ckformatstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.scattergeo.marker.colorbar.tickformatstopdefa + ults), sets the default property values to use + for elements of + scattergeo.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scattergeo/marker/_colorbar.py b/plotly/graph_objs/scattergeo/marker/_colorbar.py index 4681a83f6e6..c3603f90a20 100644 --- a/plotly/graph_objs/scattergeo/marker/_colorbar.py +++ b/plotly/graph_objs/scattergeo/marker/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.data.scattergeo.mar + ker.colorbar.tickformatstopdefaults), sets the default property + values to use for elements of + scattergeo.marker.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.scattergeo.marker.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.scattergeo.marker.colorbar.Tickformat stop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scattergeo.marker.colorbar.Tickformat - stop instance or dict with compatible properties + When used in a template (as layout.template.data.scatte + rgeo.marker.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + scattergeo.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1559,8 +1566,10 @@ def __init__( plotly.graph_objs.scattergeo.marker.colorbar.Tickformat stop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scattergeo.marker.colorbar.Tickformat - stop instance or dict with compatible properties + When used in a template (as layout.template.data.scatte + rgeo.marker.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + scattergeo.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scattergl/_marker.py b/plotly/graph_objs/scattergl/_marker.py index b8e1c0e4bd9..060de11815e 100644 --- a/plotly/graph_objs/scattergl/_marker.py +++ b/plotly/graph_objs/scattergl/_marker.py @@ -308,9 +308,11 @@ def colorbar(self): kformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scattergl.marker.colorbar.Tic - kformatstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.scattergl.marker.colorbar.tickformatstopdefau + lts), sets the default property values to use + for elements of + scattergl.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scattergl/marker/_colorbar.py b/plotly/graph_objs/scattergl/marker/_colorbar.py index 54400bd9028..b054d907edb 100644 --- a/plotly/graph_objs/scattergl/marker/_colorbar.py +++ b/plotly/graph_objs/scattergl/marker/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.data.scattergl.mark + er.colorbar.tickformatstopdefaults), sets the default property + values to use for elements of + scattergl.marker.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.scattergl.marker.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.scattergl.marker.colorbar.Tickformats top instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scattergl.marker.colorbar.Tickformats - top instance or dict with compatible properties + When used in a template (as layout.template.data.scatte + rgl.marker.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + scattergl.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1559,8 +1566,10 @@ def __init__( plotly.graph_objs.scattergl.marker.colorbar.Tickformats top instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scattergl.marker.colorbar.Tickformats - top instance or dict with compatible properties + When used in a template (as layout.template.data.scatte + rgl.marker.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + scattergl.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scattermapbox/_marker.py b/plotly/graph_objs/scattermapbox/_marker.py index a0fcc1586b5..346c5a184bc 100644 --- a/plotly/graph_objs/scattermapbox/_marker.py +++ b/plotly/graph_objs/scattermapbox/_marker.py @@ -308,9 +308,11 @@ def colorbar(self): .Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scattermapbox.marker.colorbar - .Tickformatstop instance or dict with - compatible properties + When used in a template (as layout.template.dat + a.scattermapbox.marker.colorbar.tickformatstopd + efaults), sets the default property values to + use for elements of + scattermapbox.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scattermapbox/marker/_colorbar.py b/plotly/graph_objs/scattermapbox/marker/_colorbar.py index 62fe5ebce3d..1f9e1371ad7 100644 --- a/plotly/graph_objs/scattermapbox/marker/_colorbar.py +++ b/plotly/graph_objs/scattermapbox/marker/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.data.scattermapbox. + marker.colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + scattermapbox.marker.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.scattermapbox.marker.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.scattermapbox.marker.colorbar.Tickfor matstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scattermapbox.marker.colorbar.Tickfor - matstop instance or dict with compatible properties + When used in a template (as layout.template.data.scatte + rmapbox.marker.colorbar.tickformatstopdefaults), sets + the default property values to use for elements of + scattermapbox.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1559,8 +1566,10 @@ def __init__( plotly.graph_objs.scattermapbox.marker.colorbar.Tickfor matstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scattermapbox.marker.colorbar.Tickfor - matstop instance or dict with compatible properties + When used in a template (as layout.template.data.scatte + rmapbox.marker.colorbar.tickformatstopdefaults), sets + the default property values to use for elements of + scattermapbox.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scatterpolar/_marker.py b/plotly/graph_objs/scatterpolar/_marker.py index c28d515cdf2..c698ec6193a 100644 --- a/plotly/graph_objs/scatterpolar/_marker.py +++ b/plotly/graph_objs/scatterpolar/_marker.py @@ -308,9 +308,11 @@ def colorbar(self): Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scatterpolar.marker.colorbar. - Tickformatstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.scatterpolar.marker.colorbar.tickformatstopde + faults), sets the default property values to + use for elements of + scatterpolar.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scatterpolar/marker/_colorbar.py b/plotly/graph_objs/scatterpolar/marker/_colorbar.py index 30169608ad1..1decb5074c8 100644 --- a/plotly/graph_objs/scatterpolar/marker/_colorbar.py +++ b/plotly/graph_objs/scatterpolar/marker/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.data.scatterpolar.m + arker.colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + scatterpolar.marker.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.scatterpolar.marker.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.scatterpolar.marker.colorbar.Tickform atstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scatterpolar.marker.colorbar.Tickform - atstop instance or dict with compatible properties + When used in a template (as layout.template.data.scatte + rpolar.marker.colorbar.tickformatstopdefaults), sets + the default property values to use for elements of + scatterpolar.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1559,8 +1566,10 @@ def __init__( plotly.graph_objs.scatterpolar.marker.colorbar.Tickform atstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scatterpolar.marker.colorbar.Tickform - atstop instance or dict with compatible properties + When used in a template (as layout.template.data.scatte + rpolar.marker.colorbar.tickformatstopdefaults), sets + the default property values to use for elements of + scatterpolar.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scatterpolargl/_marker.py b/plotly/graph_objs/scatterpolargl/_marker.py index 1668aa36971..8a3ad1590c2 100644 --- a/plotly/graph_objs/scatterpolargl/_marker.py +++ b/plotly/graph_objs/scatterpolargl/_marker.py @@ -308,9 +308,11 @@ def colorbar(self): r.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scatterpolargl.marker.colorba - r.Tickformatstop instance or dict with - compatible properties + When used in a template (as layout.template.dat + a.scatterpolargl.marker.colorbar.tickformatstop + defaults), sets the default property values to + use for elements of + scatterpolargl.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scatterpolargl/marker/_colorbar.py b/plotly/graph_objs/scatterpolargl/marker/_colorbar.py index 1e45fd82f6d..361e609ada3 100644 --- a/plotly/graph_objs/scatterpolargl/marker/_colorbar.py +++ b/plotly/graph_objs/scatterpolargl/marker/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.data.scatterpolargl + .marker.colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + scatterpolargl.marker.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.scatterpolargl.marker.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.scatterpolargl.marker.colorbar.Tickfo rmatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scatterpolargl.marker.colorbar.Tickfo - rmatstop instance or dict with compatible properties + When used in a template (as layout.template.data.scatte + rpolargl.marker.colorbar.tickformatstopdefaults), sets + the default property values to use for elements of + scatterpolargl.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1559,8 +1566,10 @@ def __init__( plotly.graph_objs.scatterpolargl.marker.colorbar.Tickfo rmatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scatterpolargl.marker.colorbar.Tickfo - rmatstop instance or dict with compatible properties + When used in a template (as layout.template.data.scatte + rpolargl.marker.colorbar.tickformatstopdefaults), sets + the default property values to use for elements of + scatterpolargl.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scatterternary/_marker.py b/plotly/graph_objs/scatterternary/_marker.py index 04ddeec8911..7410aa0da86 100644 --- a/plotly/graph_objs/scatterternary/_marker.py +++ b/plotly/graph_objs/scatterternary/_marker.py @@ -308,9 +308,11 @@ def colorbar(self): r.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scatterternary.marker.colorba - r.Tickformatstop instance or dict with - compatible properties + When used in a template (as layout.template.dat + a.scatterternary.marker.colorbar.tickformatstop + defaults), sets the default property values to + use for elements of + scatterternary.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/scatterternary/marker/_colorbar.py b/plotly/graph_objs/scatterternary/marker/_colorbar.py index fbb6b50f659..157d5b923a9 100644 --- a/plotly/graph_objs/scatterternary/marker/_colorbar.py +++ b/plotly/graph_objs/scatterternary/marker/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.data.scatterternary + .marker.colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + scatterternary.marker.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.scatterternary.marker.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.scatterternary.marker.colorbar.Tickfo rmatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scatterternary.marker.colorbar.Tickfo - rmatstop instance or dict with compatible properties + When used in a template (as layout.template.data.scatte + rternary.marker.colorbar.tickformatstopdefaults), sets + the default property values to use for elements of + scatterternary.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1559,8 +1566,10 @@ def __init__( plotly.graph_objs.scatterternary.marker.colorbar.Tickfo rmatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scatterternary.marker.colorbar.Tickfo - rmatstop instance or dict with compatible properties + When used in a template (as layout.template.data.scatte + rternary.marker.colorbar.tickformatstopdefaults), sets + the default property values to use for elements of + scatterternary.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/splom/_marker.py b/plotly/graph_objs/splom/_marker.py index 2735b3ac4fe..2e7cd4929c2 100644 --- a/plotly/graph_objs/splom/_marker.py +++ b/plotly/graph_objs/splom/_marker.py @@ -308,9 +308,11 @@ def colorbar(self): matstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.splom.marker.colorbar.Tickfor - matstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.splom.marker.colorbar.tickformatstopdefaults) + , sets the default property values to use for + elements of + splom.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/splom/marker/_colorbar.py b/plotly/graph_objs/splom/marker/_colorbar.py index f90e2823ab2..fb51439c0b1 100644 --- a/plotly/graph_objs/splom/marker/_colorbar.py +++ b/plotly/graph_objs/splom/marker/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.data.splom.marker.c + olorbar.tickformatstopdefaults), sets the default property + values to use for elements of + splom.marker.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.splom.marker.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.splom.marker.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.splom.marker.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.splom. + marker.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + splom.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1558,8 +1565,10 @@ def __init__( plotly.graph_objs.splom.marker.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.splom.marker.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.splom. + marker.colorbar.tickformatstopdefaults), sets the + default property values to use for elements of + splom.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/streamtube/_colorbar.py b/plotly/graph_objs/streamtube/_colorbar.py index eceb84f59d0..545b3cf43fe 100644 --- a/plotly/graph_objs/streamtube/_colorbar.py +++ b/plotly/graph_objs/streamtube/_colorbar.py @@ -752,6 +752,10 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as layout.template.data.streamtube.col + orbar.tickformatstopdefaults), sets the default property values + to use for elements of streamtube.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.streamtube.colorbar.Tickformatstop @@ -1324,8 +1328,10 @@ def _prop_descriptions(self): plotly.graph_objs.streamtube.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.streamtube.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.stream + tube.colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + streamtube.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1558,8 +1564,10 @@ def __init__( plotly.graph_objs.streamtube.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.streamtube.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.stream + tube.colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + streamtube.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/graph_objs/surface/_colorbar.py b/plotly/graph_objs/surface/_colorbar.py index 662257d4686..3f66f4e3131 100644 --- a/plotly/graph_objs/surface/_colorbar.py +++ b/plotly/graph_objs/surface/_colorbar.py @@ -752,6 +752,11 @@ def tickformatstops(self, val): @property def tickformatstopdefaults(self): """ + When used in a template (as + layout.template.data.surface.colorbar.tickformatstopdefaults), + sets the default property values to use for elements of + surface.colorbar.tickformatstops + The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - An instance of plotly.graph_objs.surface.colorbar.Tickformatstop @@ -1324,8 +1329,10 @@ def _prop_descriptions(self): plotly.graph_objs.surface.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.surface.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.surfac + e.colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + surface.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode @@ -1558,8 +1565,10 @@ def __init__( plotly.graph_objs.surface.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.surface.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.data.surfac + e.colorbar.tickformatstopdefaults), sets the default + property values to use for elements of + surface.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/_layout.py b/plotly/validators/_layout.py index e9ba7f47274..6ff5d9c7d68 100644 --- a/plotly/validators/_layout.py +++ b/plotly/validators/_layout.py @@ -17,8 +17,10 @@ def __init__(self, plotly_name='layout', parent_name='', **kwargs): plotly.graph_objs.layout.Annotation instance or dict with compatible properties annotationdefaults - plotly.graph_objs.layout.Annotation instance or - dict with compatible properties + When used in a template (as + layout.template.layout.annotationdefaults), + sets the default property values to use for + elements of layout.annotations autosize Determines whether or not a layout width or height that has been left undefined by the user @@ -170,8 +172,10 @@ def __init__(self, plotly_name='layout', parent_name='', **kwargs): plotly.graph_objs.layout.Image instance or dict with compatible properties imagedefaults - plotly.graph_objs.layout.Image instance or dict - with compatible properties + When used in a template (as + layout.template.layout.imagedefaults), sets the + default property values to use for elements of + layout.images legend plotly.graph_objs.layout.Legend instance or dict with compatible properties @@ -223,8 +227,10 @@ def __init__(self, plotly_name='layout', parent_name='', **kwargs): plotly.graph_objs.layout.Shape instance or dict with compatible properties shapedefaults - plotly.graph_objs.layout.Shape instance or dict - with compatible properties + When used in a template (as + layout.template.layout.shapedefaults), sets the + default property values to use for elements of + layout.shapes showlegend Determines whether or not a legend is drawn. Default is `true` if there is a trace to show @@ -236,8 +242,10 @@ def __init__(self, plotly_name='layout', parent_name='', **kwargs): plotly.graph_objs.layout.Slider instance or dict with compatible properties sliderdefaults - plotly.graph_objs.layout.Slider instance or - dict with compatible properties + When used in a template (as + layout.template.layout.sliderdefaults), sets + the default property values to use for elements + of layout.sliders spikedistance Sets the default distance (in pixels) to look for data to draw spikelines to (-1 means no @@ -247,8 +255,32 @@ def __init__(self, plotly_name='layout', parent_name='', **kwargs): hovered on but will not generate spikelines, such as scatter fills. template - plotly.graph_objs.layout.Template instance or - dict with compatible properties + Default attributes to be applied to the plot. + This should be a dict with format: `{'layout': + layoutTemplate, 'data': {trace_type: + [traceTemplate, ...], ...}}` where + `layoutTemplate` is a dict matching the + structure of `figure.layout` and + `traceTemplate` is a dict matching the + structure of the trace with type `trace_type` + (e.g. 'scatter'). Alternatively, this may be + specified as an instance of + plotly.graph_objs.layout.Template. Trace + templates are applied cyclically to traces of + each type. Container arrays (eg `annotations`) + have special handling: An object ending in + `defaults` (eg `annotationdefaults`) is applied + to each array item. But if an item has a + `templateitemname` key we look in the template + array for an item with matching `name` and + apply that instead. If no matching `name` is + found we mark the item invisible. Any named + template item not referenced is appended to the + end of the array, so this can be used to add a + watermark annotation or a logo image, for + example. To omit one of these items on the + plot, make an item with matching + `templateitemname` and `visible: false`. ternary plotly.graph_objs.layout.Ternary instance or dict with compatible properties @@ -260,8 +292,10 @@ def __init__(self, plotly_name='layout', parent_name='', **kwargs): plotly.graph_objs.layout.Updatemenu instance or dict with compatible properties updatemenudefaults - plotly.graph_objs.layout.Updatemenu instance or - dict with compatible properties + When used in a template (as + layout.template.layout.updatemenudefaults), + sets the default property values to use for + elements of layout.updatemenus violingap Sets the gap (in plot fraction) between violins of adjacent location coordinates. diff --git a/plotly/validators/_parcoords.py b/plotly/validators/_parcoords.py index 6fdedff5c32..7a6eed3c3f6 100644 --- a/plotly/validators/_parcoords.py +++ b/plotly/validators/_parcoords.py @@ -24,8 +24,10 @@ def __init__(self, plotly_name='parcoords', parent_name='', **kwargs): coordinates chart. 2..60 dimensions are supported. dimensiondefaults - plotly.graph_objs.parcoords.Dimension instance - or dict with compatible properties + When used in a template (as layout.template.dat + a.parcoords.dimensiondefaults), sets the + default property values to use for elements of + parcoords.dimensions domain plotly.graph_objs.parcoords.Domain instance or dict with compatible properties diff --git a/plotly/validators/_splom.py b/plotly/validators/_splom.py index 1773c6aeaa3..d3963eda516 100644 --- a/plotly/validators/_splom.py +++ b/plotly/validators/_splom.py @@ -26,8 +26,10 @@ def __init__(self, plotly_name='splom', parent_name='', **kwargs): plotly.graph_objs.splom.Dimension instance or dict with compatible properties dimensiondefaults - plotly.graph_objs.splom.Dimension instance or - dict with compatible properties + When used in a template (as + layout.template.data.splom.dimensiondefaults), + sets the default property values to use for + elements of splom.dimensions hoverinfo Determines which trace information appear on hover. If `none` or `skip` are set, no diff --git a/plotly/validators/bar/marker/_colorbar.py b/plotly/validators/bar/marker/_colorbar.py index 2597b97eb04..56fd5193d4d 100644 --- a/plotly/validators/bar/marker/_colorbar.py +++ b/plotly/validators/bar/marker/_colorbar.py @@ -141,9 +141,10 @@ def __init__( tstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.bar.marker.colorbar.Tickforma - tstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.bar.marker.colorbar.tickformatstopdefaults), + sets the default property values to use for + elements of bar.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/barpolar/marker/_colorbar.py b/plotly/validators/barpolar/marker/_colorbar.py index 846be86b20f..2df0892cc55 100644 --- a/plotly/validators/barpolar/marker/_colorbar.py +++ b/plotly/validators/barpolar/marker/_colorbar.py @@ -141,9 +141,11 @@ def __init__( formatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.barpolar.marker.colorbar.Tick - formatstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.barpolar.marker.colorbar.tickformatstopdefaul + ts), sets the default property values to use + for elements of + barpolar.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/carpet/_aaxis.py b/plotly/validators/carpet/_aaxis.py index 6fb7f08cd95..8c3e523ea76 100644 --- a/plotly/validators/carpet/_aaxis.py +++ b/plotly/validators/carpet/_aaxis.py @@ -177,8 +177,10 @@ def __init__(self, plotly_name='aaxis', parent_name='carpet', **kwargs): plotly.graph_objs.carpet.aaxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.carpet.aaxis.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.dat + a.carpet.aaxis.tickformatstopdefaults), sets + the default property values to use for elements + of carpet.aaxis.tickformatstops tickmode tickprefix diff --git a/plotly/validators/carpet/_baxis.py b/plotly/validators/carpet/_baxis.py index fa16f60691c..078af35e19f 100644 --- a/plotly/validators/carpet/_baxis.py +++ b/plotly/validators/carpet/_baxis.py @@ -177,8 +177,10 @@ def __init__(self, plotly_name='baxis', parent_name='carpet', **kwargs): plotly.graph_objs.carpet.baxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.carpet.baxis.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.dat + a.carpet.baxis.tickformatstopdefaults), sets + the default property values to use for elements + of carpet.baxis.tickformatstops tickmode tickprefix diff --git a/plotly/validators/choropleth/_colorbar.py b/plotly/validators/choropleth/_colorbar.py index 1e784af2c85..0bca56e538e 100644 --- a/plotly/validators/choropleth/_colorbar.py +++ b/plotly/validators/choropleth/_colorbar.py @@ -141,9 +141,10 @@ def __init__( tstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.choropleth.colorbar.Tickforma - tstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.choropleth.colorbar.tickformatstopdefaults), + sets the default property values to use for + elements of choropleth.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/cone/_colorbar.py b/plotly/validators/cone/_colorbar.py index cd2d6e407e0..235bafd1f23 100644 --- a/plotly/validators/cone/_colorbar.py +++ b/plotly/validators/cone/_colorbar.py @@ -138,8 +138,10 @@ def __init__(self, plotly_name='colorbar', parent_name='cone', **kwargs): plotly.graph_objs.cone.colorbar.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.cone.colorbar.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.dat + a.cone.colorbar.tickformatstopdefaults), sets + the default property values to use for elements + of cone.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/contour/_colorbar.py b/plotly/validators/contour/_colorbar.py index 9ca12434105..20c013fcd6d 100644 --- a/plotly/validators/contour/_colorbar.py +++ b/plotly/validators/contour/_colorbar.py @@ -140,8 +140,10 @@ def __init__( plotly.graph_objs.contour.colorbar.Tickformatst op instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.contour.colorbar.Tickformatst - op instance or dict with compatible properties + When used in a template (as layout.template.dat + a.contour.colorbar.tickformatstopdefaults), + sets the default property values to use for + elements of contour.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/contourcarpet/_colorbar.py b/plotly/validators/contourcarpet/_colorbar.py index dba42d068c0..92712289753 100644 --- a/plotly/validators/contourcarpet/_colorbar.py +++ b/plotly/validators/contourcarpet/_colorbar.py @@ -141,9 +141,11 @@ def __init__( rmatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.contourcarpet.colorbar.Tickfo - rmatstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.contourcarpet.colorbar.tickformatstopdefaults + ), sets the default property values to use for + elements of + contourcarpet.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/heatmap/_colorbar.py b/plotly/validators/heatmap/_colorbar.py index 0d71d660c97..78d937903a0 100644 --- a/plotly/validators/heatmap/_colorbar.py +++ b/plotly/validators/heatmap/_colorbar.py @@ -140,8 +140,10 @@ def __init__( plotly.graph_objs.heatmap.colorbar.Tickformatst op instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.heatmap.colorbar.Tickformatst - op instance or dict with compatible properties + When used in a template (as layout.template.dat + a.heatmap.colorbar.tickformatstopdefaults), + sets the default property values to use for + elements of heatmap.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/heatmapgl/_colorbar.py b/plotly/validators/heatmapgl/_colorbar.py index 0092cc6da7f..ec8431023cb 100644 --- a/plotly/validators/heatmapgl/_colorbar.py +++ b/plotly/validators/heatmapgl/_colorbar.py @@ -141,9 +141,10 @@ def __init__( stop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.heatmapgl.colorbar.Tickformat - stop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.heatmapgl.colorbar.tickformatstopdefaults), + sets the default property values to use for + elements of heatmapgl.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/histogram/marker/_colorbar.py b/plotly/validators/histogram/marker/_colorbar.py index 167c0e822e9..54d343ceea2 100644 --- a/plotly/validators/histogram/marker/_colorbar.py +++ b/plotly/validators/histogram/marker/_colorbar.py @@ -141,9 +141,11 @@ def __init__( kformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.histogram.marker.colorbar.Tic - kformatstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.histogram.marker.colorbar.tickformatstopdefau + lts), sets the default property values to use + for elements of + histogram.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/histogram2d/_colorbar.py b/plotly/validators/histogram2d/_colorbar.py index 2df365f3849..d698a33361e 100644 --- a/plotly/validators/histogram2d/_colorbar.py +++ b/plotly/validators/histogram2d/_colorbar.py @@ -141,9 +141,11 @@ def __init__( atstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.histogram2d.colorbar.Tickform - atstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.histogram2d.colorbar.tickformatstopdefaults), + sets the default property values to use for + elements of + histogram2d.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/histogram2dcontour/_colorbar.py b/plotly/validators/histogram2dcontour/_colorbar.py index 59e5b06740c..b4fb13baab1 100644 --- a/plotly/validators/histogram2dcontour/_colorbar.py +++ b/plotly/validators/histogram2dcontour/_colorbar.py @@ -144,9 +144,11 @@ def __init__( ickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.histogram2dcontour.colorbar.T - ickformatstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.histogram2dcontour.colorbar.tickformatstopdef + aults), sets the default property values to use + for elements of + histogram2dcontour.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/_mapbox.py b/plotly/validators/layout/_mapbox.py index 5cc394a1013..0b4167753b4 100644 --- a/plotly/validators/layout/_mapbox.py +++ b/plotly/validators/layout/_mapbox.py @@ -28,8 +28,10 @@ def __init__(self, plotly_name='mapbox', parent_name='layout', **kwargs): plotly.graph_objs.layout.mapbox.Layer instance or dict with compatible properties layerdefaults - plotly.graph_objs.layout.mapbox.Layer instance - or dict with compatible properties + When used in a template (as + layout.template.layout.mapbox.layerdefaults), + sets the default property values to use for + elements of layout.mapbox.layers pitch Sets the pitch angle of the map (in degrees, where 0 means perpendicular to the surface of diff --git a/plotly/validators/layout/_scene.py b/plotly/validators/layout/_scene.py index 76d94fa98ba..c5bfe7194a1 100644 --- a/plotly/validators/layout/_scene.py +++ b/plotly/validators/layout/_scene.py @@ -14,8 +14,10 @@ def __init__(self, plotly_name='scene', parent_name='layout', **kwargs): plotly.graph_objs.layout.scene.Annotation instance or dict with compatible properties annotationdefaults - plotly.graph_objs.layout.scene.Annotation - instance or dict with compatible properties + When used in a template (as layout.template.lay + out.scene.annotationdefaults), sets the default + property values to use for elements of + layout.scene.annotations aspectmode If "cube", this scene's axes are drawn as a cube, regardless of the axes' ranges. If diff --git a/plotly/validators/layout/_sliders.py b/plotly/validators/layout/_sliders.py index d1361765fc7..ce1e3b564d9 100644 --- a/plotly/validators/layout/_sliders.py +++ b/plotly/validators/layout/_sliders.py @@ -58,8 +58,10 @@ def __init__(self, plotly_name='sliders', parent_name='layout', **kwargs): plotly.graph_objs.layout.slider.Step instance or dict with compatible properties stepdefaults - plotly.graph_objs.layout.slider.Step instance - or dict with compatible properties + When used in a template (as + layout.template.layout.slider.stepdefaults), + sets the default property values to use for + elements of layout.slider.steps templateitemname Used to refer to a named item in this array in the template. Named items from the template diff --git a/plotly/validators/layout/_updatemenus.py b/plotly/validators/layout/_updatemenus.py index 9d9b634144d..710a0deddf0 100644 --- a/plotly/validators/layout/_updatemenus.py +++ b/plotly/validators/layout/_updatemenus.py @@ -30,8 +30,10 @@ def __init__( plotly.graph_objs.layout.updatemenu.Button instance or dict with compatible properties buttondefaults - plotly.graph_objs.layout.updatemenu.Button - instance or dict with compatible properties + When used in a template (as layout.template.lay + out.updatemenu.buttondefaults), sets the + default property values to use for elements of + layout.updatemenu.buttons direction Determines the direction in which the buttons are laid out, whether in a dropdown menu or a diff --git a/plotly/validators/layout/_xaxis.py b/plotly/validators/layout/_xaxis.py index ff124062943..53a6ce6fa92 100644 --- a/plotly/validators/layout/_xaxis.py +++ b/plotly/validators/layout/_xaxis.py @@ -314,8 +314,10 @@ def __init__(self, plotly_name='xaxis', parent_name='layout', **kwargs): plotly.graph_objs.layout.xaxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.xaxis.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.lay + out.xaxis.tickformatstopdefaults), sets the + default property values to use for elements of + layout.xaxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/_yaxis.py b/plotly/validators/layout/_yaxis.py index 12f2d7c223c..039625d0b2f 100644 --- a/plotly/validators/layout/_yaxis.py +++ b/plotly/validators/layout/_yaxis.py @@ -308,8 +308,10 @@ def __init__(self, plotly_name='yaxis', parent_name='layout', **kwargs): plotly.graph_objs.layout.yaxis.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.yaxis.Tickformatstop - instance or dict with compatible properties + When used in a template (as layout.template.lay + out.yaxis.tickformatstopdefaults), sets the + default property values to use for elements of + layout.yaxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/polar/_angularaxis.py b/plotly/validators/layout/polar/_angularaxis.py index 5673a302c1a..225494a1cd3 100644 --- a/plotly/validators/layout/polar/_angularaxis.py +++ b/plotly/validators/layout/polar/_angularaxis.py @@ -194,9 +194,11 @@ def __init__( formatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.polar.angularaxis.Tick - formatstop instance or dict with compatible - properties + When used in a template (as layout.template.lay + out.polar.angularaxis.tickformatstopdefaults), + sets the default property values to use for + elements of + layout.polar.angularaxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/polar/_radialaxis.py b/plotly/validators/layout/polar/_radialaxis.py index 431615d6eaf..0255ef3df14 100644 --- a/plotly/validators/layout/polar/_radialaxis.py +++ b/plotly/validators/layout/polar/_radialaxis.py @@ -215,9 +215,11 @@ def __init__( ormatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.polar.radialaxis.Tickf - ormatstop instance or dict with compatible - properties + When used in a template (as layout.template.lay + out.polar.radialaxis.tickformatstopdefaults), + sets the default property values to use for + elements of + layout.polar.radialaxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/scene/_xaxis.py b/plotly/validators/layout/scene/_xaxis.py index 440b174aaab..1b9ad8e4ba6 100644 --- a/plotly/validators/layout/scene/_xaxis.py +++ b/plotly/validators/layout/scene/_xaxis.py @@ -223,9 +223,10 @@ def __init__( stop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.scene.xaxis.Tickformat - stop instance or dict with compatible - properties + When used in a template (as layout.template.lay + out.scene.xaxis.tickformatstopdefaults), sets + the default property values to use for elements + of layout.scene.xaxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/scene/_yaxis.py b/plotly/validators/layout/scene/_yaxis.py index 2d2307adb47..ffe7c5f084a 100644 --- a/plotly/validators/layout/scene/_yaxis.py +++ b/plotly/validators/layout/scene/_yaxis.py @@ -223,9 +223,10 @@ def __init__( stop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.scene.yaxis.Tickformat - stop instance or dict with compatible - properties + When used in a template (as layout.template.lay + out.scene.yaxis.tickformatstopdefaults), sets + the default property values to use for elements + of layout.scene.yaxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/scene/_zaxis.py b/plotly/validators/layout/scene/_zaxis.py index 0db4334d42b..ca4893f78eb 100644 --- a/plotly/validators/layout/scene/_zaxis.py +++ b/plotly/validators/layout/scene/_zaxis.py @@ -223,9 +223,10 @@ def __init__( stop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.scene.zaxis.Tickformat - stop instance or dict with compatible - properties + When used in a template (as layout.template.lay + out.scene.zaxis.tickformatstopdefaults), sets + the default property values to use for elements + of layout.scene.zaxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/ternary/_aaxis.py b/plotly/validators/layout/ternary/_aaxis.py index bb394eeb647..83e26c69bee 100644 --- a/plotly/validators/layout/ternary/_aaxis.py +++ b/plotly/validators/layout/ternary/_aaxis.py @@ -158,9 +158,10 @@ def __init__( atstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.ternary.aaxis.Tickform - atstop instance or dict with compatible - properties + When used in a template (as layout.template.lay + out.ternary.aaxis.tickformatstopdefaults), sets + the default property values to use for elements + of layout.ternary.aaxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/ternary/_baxis.py b/plotly/validators/layout/ternary/_baxis.py index 6bbafc4803c..2c48381d021 100644 --- a/plotly/validators/layout/ternary/_baxis.py +++ b/plotly/validators/layout/ternary/_baxis.py @@ -158,9 +158,10 @@ def __init__( atstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.ternary.baxis.Tickform - atstop instance or dict with compatible - properties + When used in a template (as layout.template.lay + out.ternary.baxis.tickformatstopdefaults), sets + the default property values to use for elements + of layout.ternary.baxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/ternary/_caxis.py b/plotly/validators/layout/ternary/_caxis.py index 4a7ecef5f9c..46153cfe787 100644 --- a/plotly/validators/layout/ternary/_caxis.py +++ b/plotly/validators/layout/ternary/_caxis.py @@ -158,9 +158,10 @@ def __init__( atstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.layout.ternary.caxis.Tickform - atstop instance or dict with compatible - properties + When used in a template (as layout.template.lay + out.ternary.caxis.tickformatstopdefaults), sets + the default property values to use for elements + of layout.ternary.caxis.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/layout/xaxis/_rangeselector.py b/plotly/validators/layout/xaxis/_rangeselector.py index a1db8f27ceb..e90c08d2847 100644 --- a/plotly/validators/layout/xaxis/_rangeselector.py +++ b/plotly/validators/layout/xaxis/_rangeselector.py @@ -32,9 +32,10 @@ def __init__( default, a range selector comes with no buttons. buttondefaults - plotly.graph_objs.layout.xaxis.rangeselector.Bu - tton instance or dict with compatible - properties + When used in a template (as layout.template.lay + out.xaxis.rangeselector.buttondefaults), sets + the default property values to use for elements + of layout.xaxis.rangeselector.buttons font Sets the font of the range selector button text. diff --git a/plotly/validators/mesh3d/_colorbar.py b/plotly/validators/mesh3d/_colorbar.py index 5ea09489295..503901b6a32 100644 --- a/plotly/validators/mesh3d/_colorbar.py +++ b/plotly/validators/mesh3d/_colorbar.py @@ -138,8 +138,10 @@ def __init__(self, plotly_name='colorbar', parent_name='mesh3d', **kwargs): plotly.graph_objs.mesh3d.colorbar.Tickformatsto p instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.mesh3d.colorbar.Tickformatsto - p instance or dict with compatible properties + When used in a template (as layout.template.dat + a.mesh3d.colorbar.tickformatstopdefaults), sets + the default property values to use for elements + of mesh3d.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/parcoords/line/_colorbar.py b/plotly/validators/parcoords/line/_colorbar.py index 2486be43032..28644af68b6 100644 --- a/plotly/validators/parcoords/line/_colorbar.py +++ b/plotly/validators/parcoords/line/_colorbar.py @@ -141,9 +141,11 @@ def __init__( ormatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.parcoords.line.colorbar.Tickf - ormatstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.parcoords.line.colorbar.tickformatstopdefault + s), sets the default property values to use for + elements of + parcoords.line.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/scatter/marker/_colorbar.py b/plotly/validators/scatter/marker/_colorbar.py index 92bc0f81d99..4510a77e451 100644 --- a/plotly/validators/scatter/marker/_colorbar.py +++ b/plotly/validators/scatter/marker/_colorbar.py @@ -141,9 +141,11 @@ def __init__( ormatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scatter.marker.colorbar.Tickf - ormatstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.scatter.marker.colorbar.tickformatstopdefault + s), sets the default property values to use for + elements of + scatter.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/scatter3d/marker/_colorbar.py b/plotly/validators/scatter3d/marker/_colorbar.py index 3fdb9909090..2bf59a6ed24 100644 --- a/plotly/validators/scatter3d/marker/_colorbar.py +++ b/plotly/validators/scatter3d/marker/_colorbar.py @@ -141,9 +141,11 @@ def __init__( kformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scatter3d.marker.colorbar.Tic - kformatstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.scatter3d.marker.colorbar.tickformatstopdefau + lts), sets the default property values to use + for elements of + scatter3d.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/scattercarpet/marker/_colorbar.py b/plotly/validators/scattercarpet/marker/_colorbar.py index 4ba964fb77f..e7f405f5855 100644 --- a/plotly/validators/scattercarpet/marker/_colorbar.py +++ b/plotly/validators/scattercarpet/marker/_colorbar.py @@ -144,9 +144,11 @@ def __init__( .Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scattercarpet.marker.colorbar - .Tickformatstop instance or dict with - compatible properties + When used in a template (as layout.template.dat + a.scattercarpet.marker.colorbar.tickformatstopd + efaults), sets the default property values to + use for elements of + scattercarpet.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/scattergeo/marker/_colorbar.py b/plotly/validators/scattergeo/marker/_colorbar.py index a55e6b6b325..8022c5ea038 100644 --- a/plotly/validators/scattergeo/marker/_colorbar.py +++ b/plotly/validators/scattergeo/marker/_colorbar.py @@ -144,9 +144,11 @@ def __init__( ckformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scattergeo.marker.colorbar.Ti - ckformatstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.scattergeo.marker.colorbar.tickformatstopdefa + ults), sets the default property values to use + for elements of + scattergeo.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/scattergl/marker/_colorbar.py b/plotly/validators/scattergl/marker/_colorbar.py index a6a5ddd2772..b3a88a86bc5 100644 --- a/plotly/validators/scattergl/marker/_colorbar.py +++ b/plotly/validators/scattergl/marker/_colorbar.py @@ -141,9 +141,11 @@ def __init__( kformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scattergl.marker.colorbar.Tic - kformatstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.scattergl.marker.colorbar.tickformatstopdefau + lts), sets the default property values to use + for elements of + scattergl.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/scattermapbox/marker/_colorbar.py b/plotly/validators/scattermapbox/marker/_colorbar.py index baf1f5dc4ac..6f46bc4173e 100644 --- a/plotly/validators/scattermapbox/marker/_colorbar.py +++ b/plotly/validators/scattermapbox/marker/_colorbar.py @@ -144,9 +144,11 @@ def __init__( .Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scattermapbox.marker.colorbar - .Tickformatstop instance or dict with - compatible properties + When used in a template (as layout.template.dat + a.scattermapbox.marker.colorbar.tickformatstopd + efaults), sets the default property values to + use for elements of + scattermapbox.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/scatterpolar/marker/_colorbar.py b/plotly/validators/scatterpolar/marker/_colorbar.py index 87286160798..7463e6f21c4 100644 --- a/plotly/validators/scatterpolar/marker/_colorbar.py +++ b/plotly/validators/scatterpolar/marker/_colorbar.py @@ -144,9 +144,11 @@ def __init__( Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scatterpolar.marker.colorbar. - Tickformatstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.scatterpolar.marker.colorbar.tickformatstopde + faults), sets the default property values to + use for elements of + scatterpolar.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/scatterpolargl/marker/_colorbar.py b/plotly/validators/scatterpolargl/marker/_colorbar.py index 3fdadece2be..ed83d757da9 100644 --- a/plotly/validators/scatterpolargl/marker/_colorbar.py +++ b/plotly/validators/scatterpolargl/marker/_colorbar.py @@ -144,9 +144,11 @@ def __init__( r.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scatterpolargl.marker.colorba - r.Tickformatstop instance or dict with - compatible properties + When used in a template (as layout.template.dat + a.scatterpolargl.marker.colorbar.tickformatstop + defaults), sets the default property values to + use for elements of + scatterpolargl.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/scatterternary/marker/_colorbar.py b/plotly/validators/scatterternary/marker/_colorbar.py index b1f7fee31eb..856f92ab719 100644 --- a/plotly/validators/scatterternary/marker/_colorbar.py +++ b/plotly/validators/scatterternary/marker/_colorbar.py @@ -144,9 +144,11 @@ def __init__( r.Tickformatstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.scatterternary.marker.colorba - r.Tickformatstop instance or dict with - compatible properties + When used in a template (as layout.template.dat + a.scatterternary.marker.colorbar.tickformatstop + defaults), sets the default property values to + use for elements of + scatterternary.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/splom/marker/_colorbar.py b/plotly/validators/splom/marker/_colorbar.py index 12ae0aaa3c0..47c1a368d2d 100644 --- a/plotly/validators/splom/marker/_colorbar.py +++ b/plotly/validators/splom/marker/_colorbar.py @@ -141,9 +141,11 @@ def __init__( matstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.splom.marker.colorbar.Tickfor - matstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.splom.marker.colorbar.tickformatstopdefaults) + , sets the default property values to use for + elements of + splom.marker.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/streamtube/_colorbar.py b/plotly/validators/streamtube/_colorbar.py index c4d1abbc790..24ecc310720 100644 --- a/plotly/validators/streamtube/_colorbar.py +++ b/plotly/validators/streamtube/_colorbar.py @@ -141,9 +141,10 @@ def __init__( tstop instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.streamtube.colorbar.Tickforma - tstop instance or dict with compatible - properties + When used in a template (as layout.template.dat + a.streamtube.colorbar.tickformatstopdefaults), + sets the default property values to use for + elements of streamtube.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode diff --git a/plotly/validators/surface/_colorbar.py b/plotly/validators/surface/_colorbar.py index 489520a4fc6..aab5617f712 100644 --- a/plotly/validators/surface/_colorbar.py +++ b/plotly/validators/surface/_colorbar.py @@ -140,8 +140,10 @@ def __init__( plotly.graph_objs.surface.colorbar.Tickformatst op instance or dict with compatible properties tickformatstopdefaults - plotly.graph_objs.surface.colorbar.Tickformatst - op instance or dict with compatible properties + When used in a template (as layout.template.dat + a.surface.colorbar.tickformatstopdefaults), + sets the default property values to use for + elements of surface.colorbar.tickformatstops ticklen Sets the tick length (in px). tickmode From 08e095bd7e5ec5ecb5b18f4b09ad1082a16ad2de Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sun, 7 Oct 2018 06:44:23 -0400 Subject: [PATCH 04/34] Added template acceptance/validation tests --- .../test_graph_objs/test_template.py | 103 ++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 plotly/tests/test_core/test_graph_objs/test_template.py diff --git a/plotly/tests/test_core/test_graph_objs/test_template.py b/plotly/tests/test_core/test_graph_objs/test_template.py new file mode 100644 index 00000000000..71c2a93de17 --- /dev/null +++ b/plotly/tests/test_core/test_graph_objs/test_template.py @@ -0,0 +1,103 @@ +from __future__ import absolute_import +from unittest import TestCase +from nose.tools import raises + +import plotly.graph_objs as go + + +class TemplateTest(TestCase): + + def test_starts_as_none(self): + fig = go.Figure() + self.assertIsNone(fig.layout.template) + + def test_init_in_figure_constructor(self): + fig = go.Figure(layout={ + 'template': {'layout': {'title': 'Hello, world'}}}) + + self.assertEqual(fig.layout.template, + go.layout.Template(layout={'title': 'Hello, world'})) + + self.assertEqual(fig.to_dict(), + {'data': [], + 'layout': { + 'template': { + 'layout': {'title': 'Hello, world'}}}}) + + def test_init_in_property_assignment(self): + fig = go.Figure() + + fig.layout.template = {} + fig.layout.template = go.layout.Template( + layout={'title': 'Hello, world'}) + + self.assertEqual(fig.layout.template, + go.layout.Template(layout={'title': 'Hello, world'})) + + self.assertEqual(fig.to_dict(), + {'data': [], + 'layout': { + 'template': { + 'layout': {'title': 'Hello, world'}}}}) + + def test_defaults_in_constructor(self): + fig = go.Figure(layout={ + 'template': { + 'layout': { + 'imagedefaults': {'sizex': 500}}}}) + + self.assertEqual(fig.layout.template.layout.imagedefaults, + go.layout.Image(sizex=500)) + + self.assertEqual(fig.to_dict(), + {'data': [], + 'layout': { + 'template': { + 'layout': { + 'imagedefaults': {'sizex': 500}}}}}) + + def test_defaults_in_property_assignment(self): + fig = go.Figure() + + fig.layout.template = {} + fig.layout.template.layout.sliderdefaults = \ + go.layout.Slider(bgcolor='green') + + self.assertEqual(fig.layout.template.layout.sliderdefaults, + go.layout.Slider(bgcolor='green')) + + self.assertEqual(fig.to_dict(), + {'data': [], + 'layout': { + 'template': { + 'layout': { + 'sliderdefaults': { + 'bgcolor': 'green'}}}}}) + + @raises(ValueError) + def test_invalid_defaults_property_name_constructor(self): + go.Figure(layout={ + 'template': { + 'layout': { + 'imagedefaults': {'bogus': 500}}}}) + + @raises(ValueError) + def test_invalid_defaults_property_value_constructor(self): + go.Figure(layout={ + 'template': { + 'layout': { + 'imagedefaults': {'sizex': 'str not number'}}}}) + + @raises(ValueError) + def test_invalid_defaults_property_name_constructor(self): + go.Figure(layout={ + 'template': { + 'layout': { + 'xaxis': {'bogus': 500}}}}) + + @raises(ValueError) + def test_invalid_defaults_property_value_constructor(self): + go.Figure(layout={ + 'template': { + 'layout': { + 'xaxis': {'range': 'str not tuple'}}}}) From f84c8a514ad0038d58da6267a63cfbb48156fc30 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sun, 7 Oct 2018 07:37:52 -0400 Subject: [PATCH 05/34] Add test to make sure various template assignments trigger relayout messages --- .../test_plotly_relayout.py | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/plotly/tests/test_core/test_figure_messages/test_plotly_relayout.py b/plotly/tests/test_core/test_figure_messages/test_plotly_relayout.py index 26cfde31c03..97a5fe0adeb 100644 --- a/plotly/tests/test_core/test_figure_messages/test_plotly_relayout.py +++ b/plotly/tests/test_core/test_figure_messages/test_plotly_relayout.py @@ -59,6 +59,38 @@ def test_property_assignment_nested_array(self): self.figure._send_relayout_msg.assert_called_once_with( {'updatemenus.1.buttons.0.method': 'restyle'}) + def test_property_assignment_template(self): + # Initialize template object + self.figure.layout.template = {'layout': { + 'xaxis': {'title': 'x-label'}}} + self.figure._send_relayout_msg.assert_called_with( + {'template': {'layout': {'xaxis': {'title': 'x-label'}}}}) + + # template layout property + self.figure.layout.template.layout.title = 'Template Title' + self.figure._send_relayout_msg.assert_called_with( + {'template.layout.title': 'Template Title'}) + + # template add trace + self.figure.layout.template.data = {'bar': [ + {'marker': {'color': 'blue'}}, + {'marker': {'color': 'yellow'}}]} + + self.figure._send_relayout_msg.assert_called_with( + {'template.data': {'bar': [ + {'type': 'bar', 'marker': {'color': 'blue'}}, + {'type': 'bar', 'marker': {'color': 'yellow'}}]}}) + + # template set trace property + self.figure.layout.template.data.bar[1].marker.opacity = 0.5 + self.figure._send_relayout_msg.assert_called_with( + {'template.data.bar.1.marker.opacity': 0.5}) + + # Set elementdefaults property + self.figure.layout.template.layout.imagedefaults.sizex = 300 + self.figure._send_relayout_msg.assert_called_with( + {'template.layout.imagedefaults.sizex': 300}) + def test_plotly_relayout_toplevel(self): self.figure.plotly_relayout({'title': 'hello'}) self.figure._send_relayout_msg.assert_called_once_with( From 01d5fa70fc095c94d7bf0a9bdec200ae892e65e6 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sun, 7 Oct 2018 19:22:14 -0400 Subject: [PATCH 06/34] Implementation of plotly.io.templates configuration object Supports registering/unregistering templates and setting default template layout.template can now be specified as the name of a template, and if layout.template is not specified, then a registered default is applied during figure construction. --- _plotly_utils/basevalidators.py | 31 +++++++ codegen/utils.py | 1 + plotly/basedatatypes.py | 8 ++ plotly/io/__init__.py | 2 + plotly/io/_templates.py | 123 ++++++++++++++++++++++++++ plotly/validators/layout/_template.py | 2 +- 6 files changed, 166 insertions(+), 1 deletion(-) create mode 100644 plotly/io/_templates.py diff --git a/_plotly_utils/basevalidators.py b/_plotly_utils/basevalidators.py index b79627936d7..d0441a29839 100644 --- a/_plotly_utils/basevalidators.py +++ b/_plotly_utils/basevalidators.py @@ -2123,3 +2123,34 @@ def validate_coerce(self, v, skip_invalid=False): self.raise_invalid_val(v) return v + + +class BaseTemplateValidator(CompoundValidator): + + def __init__(self, + plotly_name, + parent_name, + data_class_str, + data_docs, + **kwargs): + + super(BaseTemplateValidator, self).__init__( + plotly_name=plotly_name, + parent_name=parent_name, + data_class_str=data_class_str, + data_docs=data_docs, + **kwargs + ) + + def validate_coerce(self, v, skip_invalid=False): + import plotly.io as pio + + try: + if v in pio.templates: + return pio.templates[v] + except TypeError: + # v is un-hashable + pass + + return super(BaseTemplateValidator, self).validate_coerce( + v, skip_invalid=skip_invalid) diff --git a/codegen/utils.py b/codegen/utils.py index bd307ba9a05..41b1c3f218c 100644 --- a/codegen/utils.py +++ b/codegen/utils.py @@ -174,6 +174,7 @@ def format_description(desc): # Mapping from full property paths to custom validator classes CUSTOM_VALIDATOR_DATATYPES = { 'layout.image.source': '_plotly_utils.basevalidators.ImageUriValidator', + 'layout.template': '_plotly_utils.basevalidators.BaseTemplateValidator', 'frame.data': 'plotly.validators.DataValidator', 'frame.layout': 'plotly.validators.LayoutValidator' } diff --git a/plotly/basedatatypes.py b/plotly/basedatatypes.py index ed331290305..50cee84d272 100644 --- a/plotly/basedatatypes.py +++ b/plotly/basedatatypes.py @@ -235,6 +235,14 @@ class is a subclass of both BaseFigure and widgets.DOMWidget. self._animation_duration_validator = animation.DurationValidator() self._animation_easing_validator = animation.EasingValidator() + # Template + # -------- + # ### Check for default template ### + import plotly.io as pio + if (self._layout_obj.template is None and + pio.templates.default is not None): + self._layout_obj.template = pio.templates.default + # Magic Methods # ------------- def __reduce__(self): diff --git a/plotly/io/__init__.py b/plotly/io/__init__.py index b02a7e8e4d5..2c11fdd8c69 100644 --- a/plotly/io/__init__.py +++ b/plotly/io/__init__.py @@ -2,3 +2,5 @@ from . import orca from ._json import to_json, from_json, read_json, write_json + +from ._templates import templates diff --git a/plotly/io/_templates.py b/plotly/io/_templates.py new file mode 100644 index 00000000000..116b822bd35 --- /dev/null +++ b/plotly/io/_templates.py @@ -0,0 +1,123 @@ +from plotly.validators.layout import TemplateValidator +import textwrap + + +# Templates configuration class +# ----------------------------- +class TemplatesConfig(object): + """ + Singleton object containing the current figure templates (aka themes) + """ + def __init__(self): + + # Initialize properties dict + self._templates = {} + self._validator = TemplateValidator() + self._default = None + + # ### Magic methods ### + # Make this act as a dict of templates + def __len__(self): + return len(self._templates) + + def __contains__(self, item): + return item in self._templates + + def __iter__(self): + return iter(self._templates) + + def __getitem__(self, item): + return self._templates[item] + + def __setitem__(self, key, value): + self._templates[key] = self._validator.validate_coerce(value) + + def __delitem__(self, key): + del self._templates[key] + + def keys(self): + return self._templates.keys() + + def items(self): + return self._templates.items() + + def update(self, d={}, **kwargs): + """ + Update one or more templates from a dict or from input keyword + arguments. + + Parameters + ---------- + d: dict + Dictionary from template names to new template values. + + kwargs + Named argument value pairs where the name is a template name + and the value is a new template value. + """ + for k, v in dict(d, **kwargs).items(): + self[k] = v + + # ### Properties ### + @property + def default(self): + """ + The name of the default template, or None if no there is no default + + If not None, the default template is automatically applied to all + figures during figure construction if no explicit template is + specified. + + The names of available templates may be retrieved with: + + >>> import plotly.io as pio + >>> list(pio.templates) + + Returns + ------- + str + """ + return self._default + + @default.setter + def default(self, value): + if value is not None and value not in self._templates: + raise ValueError(""" +Cannot set default template to {value} +because there is no template registered with this name. + + Available templates: +{available}""".format( + value=repr(value), + available=self._available_templates_str())) + + self._default = value + + def __repr__(self): + return """\ +Templates configuration +----------------------- + Default template: {default} + Available templates: +{available} +""".format(default=repr(self.default), + available=self._available_templates_str()) + + def _available_templates_str(self): + """ + Return nicely wrapped string representation of all + available template names + """ + available = '\n'.join(textwrap.wrap( + repr(list(self)), + width=79 - 8, + initial_indent=' ' * 8, + subsequent_indent=' ' * 9 + )) + return available + + +# Make config a singleton object +# ------------------------------ +templates = TemplatesConfig() +del TemplatesConfig diff --git a/plotly/validators/layout/_template.py b/plotly/validators/layout/_template.py index 129713cf95e..0decffc279b 100644 --- a/plotly/validators/layout/_template.py +++ b/plotly/validators/layout/_template.py @@ -1,7 +1,7 @@ import _plotly_utils.basevalidators -class TemplateValidator(_plotly_utils.basevalidators.CompoundValidator): +class TemplateValidator(_plotly_utils.basevalidators.BaseTemplateValidator): def __init__(self, plotly_name='template', parent_name='layout', **kwargs): super(TemplateValidator, self).__init__( From db586855b678f00201760a79472cb8725d8559e5 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Mon, 8 Oct 2018 15:42:40 -0400 Subject: [PATCH 07/34] Added plotly.io.template tests --- plotly/io/_templates.py | 5 ++ .../test_graph_objs/test_template.py | 59 +++++++++++++++++++ 2 files changed, 64 insertions(+) diff --git a/plotly/io/_templates.py b/plotly/io/_templates.py index 116b822bd35..e6dff89b580 100644 --- a/plotly/io/_templates.py +++ b/plotly/io/_templates.py @@ -33,8 +33,13 @@ def __setitem__(self, key, value): self._templates[key] = self._validator.validate_coerce(value) def __delitem__(self, key): + # Remove template del self._templates[key] + # Check if we need to remove it as the default + if self._default == key: + self._default = None + def keys(self): return self._templates.keys() diff --git a/plotly/tests/test_core/test_graph_objs/test_template.py b/plotly/tests/test_core/test_graph_objs/test_template.py index 71c2a93de17..6356a717c39 100644 --- a/plotly/tests/test_core/test_graph_objs/test_template.py +++ b/plotly/tests/test_core/test_graph_objs/test_template.py @@ -2,11 +2,26 @@ from unittest import TestCase from nose.tools import raises +import plotly.io as pio import plotly.graph_objs as go class TemplateTest(TestCase): + # Fixtures + # -------- + def setUp(self): + pio.templates['test_template'] = { + 'layout': {'font': {'family': 'Rockwell'}}} + + def tearDown(self): + try: + del pio.templates['test_template'] + except KeyError: + pass + + # template graph_objs tests + # ------------------------- def test_starts_as_none(self): fig = go.Figure() self.assertIsNone(fig.layout.template) @@ -101,3 +116,47 @@ def test_invalid_defaults_property_value_constructor(self): 'template': { 'layout': { 'xaxis': {'range': 'str not tuple'}}}}) + + # plotly.io.template tests + # ------------------------ + def test_template_as_name_constructor(self): + fig = go.Figure(layout={'template': 'test_template'}) + self.assertEqual(fig.layout.template, pio.templates['test_template']) + + def test_template_as_name_assignment(self): + fig = go.Figure() + self.assertIsNone(fig.layout.template) + + fig.layout.template = 'test_template' + self.assertEqual(fig.layout.template, pio.templates['test_template']) + + def test_template_default(self): + pio.templates.default = 'test_template' + fig = go.Figure() + self.assertEqual(fig.layout.template, pio.templates['test_template']) + + def test_template_default_override(self): + pio.templates.default = 'test_template' + template = go.layout.Template(layout={'font': {'size': 30}}) + fig = go.Figure(layout={'template': template}) + self.assertEqual(fig.layout.template, template) + + def test_template_default_override_empty(self): + pio.templates.default = 'test_template' + fig = go.Figure(layout={'template': {}}) + self.assertEqual(fig.layout.template, go.layout.Template()) + + def test_delete_default_template(self): + pio.templates.default = 'test_template' + self.assertEqual(pio.templates.default, 'test_template') + + del pio.templates['test_template'] + self.assertIsNone(pio.templates.default) + + def test_template_in(self): + self.assertTrue('test_template' in pio.templates) + self.assertFalse('bogus' in pio.templates) + self.assertFalse(42 in pio.templates) + + def test_template_iter(self): + self.assertEqual(set(pio.templates), {'test_template'}) From ae51ae1bb26e622ea7b6832eb91781e0a8a128c1 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Tue, 9 Oct 2018 15:25:00 -0400 Subject: [PATCH 08/34] plotly.io.to_templated function This inputs a figure and outputs a new figure where all eligible properties have been moved into the new figure's template definition By default properties named 'text' and 'title' are note moved into the template, but this can be customized using the `skip` argument. --- _plotly_utils/basevalidators.py | 9 +- codegen/datatypes.py | 3 +- plotly/graph_objs/_area.py | 1 + plotly/graph_objs/_bar.py | 1 + plotly/graph_objs/_barpolar.py | 1 + plotly/graph_objs/_box.py | 1 + plotly/graph_objs/_candlestick.py | 1 + plotly/graph_objs/_carpet.py | 1 + plotly/graph_objs/_choropleth.py | 1 + plotly/graph_objs/_cone.py | 1 + plotly/graph_objs/_contour.py | 1 + plotly/graph_objs/_contourcarpet.py | 1 + plotly/graph_objs/_heatmap.py | 1 + plotly/graph_objs/_heatmapgl.py | 1 + plotly/graph_objs/_histogram.py | 1 + plotly/graph_objs/_histogram2d.py | 1 + plotly/graph_objs/_histogram2dcontour.py | 1 + plotly/graph_objs/_mesh3d.py | 1 + plotly/graph_objs/_ohlc.py | 1 + plotly/graph_objs/_parcoords.py | 1 + plotly/graph_objs/_pie.py | 1 + plotly/graph_objs/_pointcloud.py | 1 + plotly/graph_objs/_sankey.py | 1 + plotly/graph_objs/_scatter.py | 1 + plotly/graph_objs/_scatter3d.py | 1 + plotly/graph_objs/_scattercarpet.py | 1 + plotly/graph_objs/_scattergeo.py | 1 + plotly/graph_objs/_scattergl.py | 1 + plotly/graph_objs/_scattermapbox.py | 1 + plotly/graph_objs/_scatterpolar.py | 1 + plotly/graph_objs/_scatterpolargl.py | 1 + plotly/graph_objs/_scatterternary.py | 1 + plotly/graph_objs/_splom.py | 1 + plotly/graph_objs/_streamtube.py | 1 + plotly/graph_objs/_surface.py | 1 + plotly/graph_objs/_table.py | 1 + plotly/graph_objs/_violin.py | 1 + plotly/io/__init__.py | 2 +- plotly/io/_json.py | 2 +- plotly/io/_templates.py | 140 +++++++++++++ .../test_graph_objs/test_template.py | 190 ++++++++++++++++++ 41 files changed, 375 insertions(+), 6 deletions(-) diff --git a/_plotly_utils/basevalidators.py b/_plotly_utils/basevalidators.py index d0441a29839..8c35d5a5b28 100644 --- a/_plotly_utils/basevalidators.py +++ b/_plotly_utils/basevalidators.py @@ -206,6 +206,7 @@ def __init__(self, plotly_name, parent_name, role=None, **_): self.parent_name = parent_name self.plotly_name = plotly_name self.role = role + self.array_ok = False def description(self): """ @@ -322,6 +323,8 @@ def __init__(self, plotly_name, parent_name, **kwargs): super(DataArrayValidator, self).__init__( plotly_name=plotly_name, parent_name=parent_name, **kwargs) + self.array_ok = True + def description(self): return ("""\ The '{plotly_name}' property is an array that may be specified as a tuple, @@ -1908,7 +1911,7 @@ def validate_coerce(self, v, skip_invalid=False): v = self.data_class() elif isinstance(v, dict): - v = self.data_class(skip_invalid=skip_invalid, **v) + v = self.data_class(v, skip_invalid=skip_invalid) elif isinstance(v, self.data_class): # Copy object @@ -1976,8 +1979,8 @@ def validate_coerce(self, v, skip_invalid=False): if isinstance(v_el, self.data_class): res.append(self.data_class(v_el)) elif isinstance(v_el, dict): - res.append(self.data_class(skip_invalid=skip_invalid, - **v_el)) + res.append(self.data_class(v_el, + skip_invalid=skip_invalid)) else: if skip_invalid: res.append(self.data_class()) diff --git a/codegen/datatypes.py b/codegen/datatypes.py index 78ee800baa8..fb9f1c32ec2 100644 --- a/codegen/datatypes.py +++ b/codegen/datatypes.py @@ -286,7 +286,8 @@ def __init__(self""") self._props['{lit_name}'] = {lit_val} self._validators['{lit_name}'] =\ LiteralValidator(plotly_name='{lit_name}',\ - parent_name='{lit_parent}', val={lit_val})""") + parent_name='{lit_parent}', val={lit_val}) + arg.pop('{lit_name}', None)""") buffer.write(f""" diff --git a/plotly/graph_objs/_area.py b/plotly/graph_objs/_area.py index bfb0b127606..408758acf01 100644 --- a/plotly/graph_objs/_area.py +++ b/plotly/graph_objs/_area.py @@ -806,6 +806,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='area', val='area' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_bar.py b/plotly/graph_objs/_bar.py index 0adc1c2a93b..e126b23ded9 100644 --- a/plotly/graph_objs/_bar.py +++ b/plotly/graph_objs/_bar.py @@ -2190,6 +2190,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='bar', val='bar' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_barpolar.py b/plotly/graph_objs/_barpolar.py index 061805957c4..41cab3bcc35 100644 --- a/plotly/graph_objs/_barpolar.py +++ b/plotly/graph_objs/_barpolar.py @@ -1363,6 +1363,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='barpolar', val='barpolar' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_box.py b/plotly/graph_objs/_box.py index 244541029f6..f7e514210c5 100644 --- a/plotly/graph_objs/_box.py +++ b/plotly/graph_objs/_box.py @@ -1582,6 +1582,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='box', val='box' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_candlestick.py b/plotly/graph_objs/_candlestick.py index 38570467734..126666afc2b 100644 --- a/plotly/graph_objs/_candlestick.py +++ b/plotly/graph_objs/_candlestick.py @@ -1242,6 +1242,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='candlestick', val='candlestick' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_carpet.py b/plotly/graph_objs/_carpet.py index 07afb17efc4..94b3f8aefb5 100644 --- a/plotly/graph_objs/_carpet.py +++ b/plotly/graph_objs/_carpet.py @@ -1730,6 +1730,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='carpet', val='carpet' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_choropleth.py b/plotly/graph_objs/_choropleth.py index 99edc48ca4b..57668cf8a74 100644 --- a/plotly/graph_objs/_choropleth.py +++ b/plotly/graph_objs/_choropleth.py @@ -1492,6 +1492,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='choropleth', val='choropleth' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_cone.py b/plotly/graph_objs/_cone.py index 020b2e0c4e4..0a62c33db93 100644 --- a/plotly/graph_objs/_cone.py +++ b/plotly/graph_objs/_cone.py @@ -1813,6 +1813,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='cone', val='cone' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_contour.py b/plotly/graph_objs/_contour.py index b5894e6f5c1..df1710f1e1a 100644 --- a/plotly/graph_objs/_contour.py +++ b/plotly/graph_objs/_contour.py @@ -2094,6 +2094,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='contour', val='contour' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_contourcarpet.py b/plotly/graph_objs/_contourcarpet.py index 1d8706bb6e0..4bbb419c261 100644 --- a/plotly/graph_objs/_contourcarpet.py +++ b/plotly/graph_objs/_contourcarpet.py @@ -1996,6 +1996,7 @@ def __init__( parent_name='contourcarpet', val='contourcarpet' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_heatmap.py b/plotly/graph_objs/_heatmap.py index 2bcc4ea1a9f..2ed8ddefdcd 100644 --- a/plotly/graph_objs/_heatmap.py +++ b/plotly/graph_objs/_heatmap.py @@ -1891,6 +1891,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='heatmap', val='heatmap' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_heatmapgl.py b/plotly/graph_objs/_heatmapgl.py index 74d5421c717..308aaf6bb4c 100644 --- a/plotly/graph_objs/_heatmapgl.py +++ b/plotly/graph_objs/_heatmapgl.py @@ -1660,6 +1660,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='heatmapgl', val='heatmapgl' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_histogram.py b/plotly/graph_objs/_histogram.py index 5a857bc7e66..41b5b1ae28e 100644 --- a/plotly/graph_objs/_histogram.py +++ b/plotly/graph_objs/_histogram.py @@ -1762,6 +1762,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='histogram', val='histogram' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_histogram2d.py b/plotly/graph_objs/_histogram2d.py index fb83ad58b30..fb158655b0a 100644 --- a/plotly/graph_objs/_histogram2d.py +++ b/plotly/graph_objs/_histogram2d.py @@ -1956,6 +1956,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='histogram2d', val='histogram2d' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_histogram2dcontour.py b/plotly/graph_objs/_histogram2dcontour.py index c407a7a8eea..26cb96eebec 100644 --- a/plotly/graph_objs/_histogram2dcontour.py +++ b/plotly/graph_objs/_histogram2dcontour.py @@ -2107,6 +2107,7 @@ def __init__( parent_name='histogram2dcontour', val='histogram2dcontour' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_mesh3d.py b/plotly/graph_objs/_mesh3d.py index 76d99cf992c..afdc8bbd12c 100644 --- a/plotly/graph_objs/_mesh3d.py +++ b/plotly/graph_objs/_mesh3d.py @@ -2284,6 +2284,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='mesh3d', val='mesh3d' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_ohlc.py b/plotly/graph_objs/_ohlc.py index 70e8536d086..bf9c14defef 100644 --- a/plotly/graph_objs/_ohlc.py +++ b/plotly/graph_objs/_ohlc.py @@ -1233,6 +1233,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='ohlc', val='ohlc' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_parcoords.py b/plotly/graph_objs/_parcoords.py index 02cd8c6c9f1..79dfd22ab12 100644 --- a/plotly/graph_objs/_parcoords.py +++ b/plotly/graph_objs/_parcoords.py @@ -1078,6 +1078,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='parcoords', val='parcoords' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_pie.py b/plotly/graph_objs/_pie.py index b0e6d74e4be..0fc2b20595d 100644 --- a/plotly/graph_objs/_pie.py +++ b/plotly/graph_objs/_pie.py @@ -1516,6 +1516,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='pie', val='pie' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_pointcloud.py b/plotly/graph_objs/_pointcloud.py index 4c1d3226fa7..e88c6671ef4 100644 --- a/plotly/graph_objs/_pointcloud.py +++ b/plotly/graph_objs/_pointcloud.py @@ -1215,6 +1215,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='pointcloud', val='pointcloud' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_sankey.py b/plotly/graph_objs/_sankey.py index 953ba7e6061..cfcf67ffb69 100644 --- a/plotly/graph_objs/_sankey.py +++ b/plotly/graph_objs/_sankey.py @@ -989,6 +989,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='sankey', val='sankey' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_scatter.py b/plotly/graph_objs/_scatter.py index ca55409585a..62c19c3ae38 100644 --- a/plotly/graph_objs/_scatter.py +++ b/plotly/graph_objs/_scatter.py @@ -2396,6 +2396,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='scatter', val='scatter' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_scatter3d.py b/plotly/graph_objs/_scatter3d.py index 4c49c7c9dc8..acc0c296eac 100644 --- a/plotly/graph_objs/_scatter3d.py +++ b/plotly/graph_objs/_scatter3d.py @@ -1895,6 +1895,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='scatter3d', val='scatter3d' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_scattercarpet.py b/plotly/graph_objs/_scattercarpet.py index dec3f375144..30b6c2a1191 100644 --- a/plotly/graph_objs/_scattercarpet.py +++ b/plotly/graph_objs/_scattercarpet.py @@ -1592,6 +1592,7 @@ def __init__( parent_name='scattercarpet', val='scattercarpet' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_scattergeo.py b/plotly/graph_objs/_scattergeo.py index 1832981e05a..af5ad7bf887 100644 --- a/plotly/graph_objs/_scattergeo.py +++ b/plotly/graph_objs/_scattergeo.py @@ -1599,6 +1599,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='scattergeo', val='scattergeo' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_scattergl.py b/plotly/graph_objs/_scattergl.py index f68f881b22e..0bb515c43a9 100644 --- a/plotly/graph_objs/_scattergl.py +++ b/plotly/graph_objs/_scattergl.py @@ -1930,6 +1930,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='scattergl', val='scattergl' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_scattermapbox.py b/plotly/graph_objs/_scattermapbox.py index 3a4d7d07974..04de732e6fa 100644 --- a/plotly/graph_objs/_scattermapbox.py +++ b/plotly/graph_objs/_scattermapbox.py @@ -1440,6 +1440,7 @@ def __init__( parent_name='scattermapbox', val='scattermapbox' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_scatterpolar.py b/plotly/graph_objs/_scatterpolar.py index f677e45dcda..8b248e2a9f4 100644 --- a/plotly/graph_objs/_scatterpolar.py +++ b/plotly/graph_objs/_scatterpolar.py @@ -1776,6 +1776,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='scatterpolar', val='scatterpolar' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_scatterpolargl.py b/plotly/graph_objs/_scatterpolargl.py index 93a3e2f6046..1ebc14345d4 100644 --- a/plotly/graph_objs/_scatterpolargl.py +++ b/plotly/graph_objs/_scatterpolargl.py @@ -1716,6 +1716,7 @@ def __init__( parent_name='scatterpolargl', val='scatterpolargl' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_scatterternary.py b/plotly/graph_objs/_scatterternary.py index 9d0a9b4aae1..be65afd4502 100644 --- a/plotly/graph_objs/_scatterternary.py +++ b/plotly/graph_objs/_scatterternary.py @@ -1748,6 +1748,7 @@ def __init__( parent_name='scatterternary', val='scatterternary' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_splom.py b/plotly/graph_objs/_splom.py index 9de52a71a3f..1d6cd7bed12 100644 --- a/plotly/graph_objs/_splom.py +++ b/plotly/graph_objs/_splom.py @@ -1194,6 +1194,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='splom', val='splom' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_streamtube.py b/plotly/graph_objs/_streamtube.py index 6e9479ef544..f1ae2ebc97d 100644 --- a/plotly/graph_objs/_streamtube.py +++ b/plotly/graph_objs/_streamtube.py @@ -1768,6 +1768,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='streamtube', val='streamtube' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_surface.py b/plotly/graph_objs/_surface.py index 7bb6c3e1051..f68a03f5c4c 100644 --- a/plotly/graph_objs/_surface.py +++ b/plotly/graph_objs/_surface.py @@ -1745,6 +1745,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='surface', val='surface' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_table.py b/plotly/graph_objs/_table.py index 1169fcbc509..a0090df5915 100644 --- a/plotly/graph_objs/_table.py +++ b/plotly/graph_objs/_table.py @@ -959,6 +959,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='table', val='table' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/graph_objs/_violin.py b/plotly/graph_objs/_violin.py index 1f8149d82d6..f4cb930578e 100644 --- a/plotly/graph_objs/_violin.py +++ b/plotly/graph_objs/_violin.py @@ -1717,6 +1717,7 @@ def __init__( self._validators['type'] = LiteralValidator( plotly_name='type', parent_name='violin', val='violin' ) + arg.pop('type', None) # Process unknown kwargs # ---------------------- diff --git a/plotly/io/__init__.py b/plotly/io/__init__.py index 2c11fdd8c69..a7d9dacd5f4 100644 --- a/plotly/io/__init__.py +++ b/plotly/io/__init__.py @@ -3,4 +3,4 @@ from ._json import to_json, from_json, read_json, write_json -from ._templates import templates +from ._templates import templates, to_templated diff --git a/plotly/io/_json.py b/plotly/io/_json.py index f65ecf0d07a..30b91c3a991 100644 --- a/plotly/io/_json.py +++ b/plotly/io/_json.py @@ -42,7 +42,7 @@ def to_json(fig, # ---------------- if remove_uids: for trace in fig_dict.get('data', []): - trace.pop('uid') + trace.pop('uid', None) # Dump to a JSON string and return # -------------------------------- diff --git a/plotly/io/_templates.py b/plotly/io/_templates.py index e6dff89b580..72eb9f0111a 100644 --- a/plotly/io/_templates.py +++ b/plotly/io/_templates.py @@ -1,5 +1,9 @@ from plotly.validators.layout import TemplateValidator +from _plotly_utils.basevalidators import ( + CompoundValidator, CompoundArrayValidator, is_array) + import textwrap +import copy # Templates configuration class @@ -126,3 +130,139 @@ def _available_templates_str(self): # ------------------------------ templates = TemplatesConfig() del TemplatesConfig + + +# Template utilities +# ------------------ +def walk_push_to_template(fig_obj, template_obj, skip): + """ + + Parameters + ---------- + fig_obj: plotly.basedatatypes.BasePlotlyType + template_obj: plotly.basedatatypes.BasePlotlyType + skip: set of str + Set of names of properties to skip + """ + for prop in list(fig_obj._props): + if prop == 'template' or prop in skip: + # Avoid infinite recursion + continue + + fig_val = fig_obj[prop] + template_val = template_obj[prop] + + validator = fig_obj._validators[prop] + + if isinstance(validator, CompoundValidator): + walk_push_to_template(fig_val, template_val, skip) + if not fig_val._props: + # Check if we can remove prop itself + fig_obj[prop] = None + elif isinstance(validator, CompoundArrayValidator) and fig_val: + template_elements = list(template_val) + template_element_names = [el.name for el in template_elements] + template_propdefaults = template_obj[prop[:-1] + 'defaults'] + + for fig_el in fig_val: + element_name = fig_el.name + if element_name: + # No properties are skipped inside a named array element + skip = set() + if fig_el.name in template_element_names: + item_index = template_element_names.index(fig_el.name) + template_el = template_elements[item_index] + walk_push_to_template(fig_el, template_el, skip) + else: + template_el = fig_el.__class__() + walk_push_to_template(fig_el, template_el, skip) + template_elements.append(template_el) + template_element_names.append(fig_el.name) + + # Restore element name + # since it was pushed to template above + fig_el.name = element_name + else: + walk_push_to_template(fig_el, template_propdefaults, skip) + + template_obj[prop] = template_elements + + elif not validator.array_ok or not is_array(fig_val): + # Move property value from figure to template + template_obj[prop] = fig_val + try: + fig_obj[prop] = None + except ValueError: + # Property cannot be set to None, move on. + pass + + + +def to_templated(fig, skip=('title', 'text')): + """ + + Parameters + ---------- + fig: plotly.basedatatypes.BaseFigure + skip + collection of names of properties to skip when moving properties to + the template. + + Returns + ------- + + """ + + # Process skip + if not skip: + skip = set() + else: + skip = set(skip) + + # Always skip uids + skip.add('uid') + + # Initialize templated figure with copy of input current figure + templated_fig = copy.deepcopy(fig) + + # Initialize template object + if templated_fig.layout.template is None: + templated_fig.layout.template = {} + + # Handle layout + walk_push_to_template(templated_fig.layout, + templated_fig.layout.template.layout, + skip=skip) + + # Handle traces + trace_type_indexes = {} + for trace in list(templated_fig.data): + template_index = trace_type_indexes.get(trace.type, 0) + + # Extend template traces if necessary + template_traces = list(templated_fig.layout.template.data[trace.type]) + while len(template_traces) <= template_index: + # Append empty trace + template_traces.append(trace.__class__()) + + # Get corresponding template trace + template_trace = template_traces[template_index] + + # Perform push properties to template + walk_push_to_template(trace, template_trace, skip=skip) + + # Update template traces in templated_fig + templated_fig.layout.template.data[trace.type] = template_traces + + # Update trace_type_indexes + trace_type_indexes[trace.type] = template_index + 1 + + # Remove useless trace arrays + for trace_type in templated_fig.layout.template.data: + traces = templated_fig.layout.template.data[trace_type] + is_empty = [trace.to_plotly_json() == {'type': trace_type} + for trace in traces] + if all(is_empty): + templated_fig.layout.template.data[trace_type] = None + + return templated_fig diff --git a/plotly/tests/test_core/test_graph_objs/test_template.py b/plotly/tests/test_core/test_graph_objs/test_template.py index 6356a717c39..8723af97d04 100644 --- a/plotly/tests/test_core/test_graph_objs/test_template.py +++ b/plotly/tests/test_core/test_graph_objs/test_template.py @@ -160,3 +160,193 @@ def test_template_in(self): def test_template_iter(self): self.assertEqual(set(pio.templates), {'test_template'}) + + +class TestToTemplated(TestCase): + + def test_move_layout_nested_properties(self): + fig = go.Figure(layout={'font': {'family': 'Courier New'}, + 'paper_bgcolor': 'yellow', + 'title': 'Hello'}) + templated_fig = pio.to_templated(fig) + + # Note that properties named 'title' are not moved to template by + # default + expected_fig = go.Figure(layout={ + 'template': {'layout': {'font': {'family': 'Courier New'}, + 'paper_bgcolor': 'yellow'}}, + 'title': 'Hello'}) + self.assertEqual(templated_fig, expected_fig) + + def test_move_layout_nested_properties_no_skip(self): + fig = go.Figure(layout={'font': {'family': 'Courier New'}, + 'paper_bgcolor': 'yellow', + 'title': 'Hello'}) + templated_fig = pio.to_templated(fig, skip=None) + + # Note that properties named 'title' are not moved to template by + # default + expected_fig = go.Figure(layout={ + 'template': {'layout': {'font': {'family': 'Courier New'}, + 'paper_bgcolor': 'yellow', + 'title': 'Hello'}}}) + self.assertEqual(templated_fig, expected_fig) + + def test_move_layout_nested_with_existing_template(self): + fig = go.Figure(layout={'font': {'family': 'Courier New'}, + 'title': 'Hello', + 'template': {'layout': { + 'font': {'family': 'Arial', + 'size': 10}}}}) + + templated_fig = pio.to_templated(fig) + + expected_fig = go.Figure(layout={ + 'template': {'layout': {'font': {'family': 'Courier New', + 'size': 10}}}, + 'title': 'Hello'}) + self.assertEqual(templated_fig, expected_fig) + + def test_move_unnamed_annotation_property(self): + fig = go.Figure(layout={ + 'annotations': [{'arrowcolor': 'blue', + 'text': 'First one', + 'font': {'size': 23}}, + {'arrowcolor': 'green', + 'text': 'Second one', + 'font': {'family': 'Rockwell'}}]}) + + templated_fig = pio.to_templated(fig) + + # Note that properties named 'text' are not moved to template by + # default, unless they are part of a named array element + expected_fig = go.Figure(layout={ + 'annotations': [{'text': 'First one'}, {'text': 'Second one'}], + 'template': {'layout': {'annotationdefaults': { + 'arrowcolor': 'green', + 'font': {'size': 23, 'family': 'Rockwell'} + }}} + }) + self.assertEqual(templated_fig, expected_fig) + + def test_move_named_annotation_property(self): + fig = go.Figure(layout={ + 'annotations': [{'arrowcolor': 'blue', + 'text': 'First one', + 'font': {'size': 23}}, + {'arrowcolor': 'green', + 'text': 'Second one', + 'font': {'family': 'Rockwell'}, + 'name': 'First'}]}) + + templated_fig = pio.to_templated(fig) + + expected_fig = go.Figure(layout={ + 'annotations': [{'text': 'First one'}, {'name': 'First'}], + 'template': {'layout': { + 'annotationdefaults': { + 'arrowcolor': 'blue', + 'font': {'size': 23} + }, + 'annotations': [{'arrowcolor': 'green', + 'font': {'family': 'Rockwell'}, + 'text': 'Second one', + 'name': 'First'}] + }} + }) + self.assertEqual(templated_fig, expected_fig) + + def test_move_nested_trace_properties(self): + fig = go.Figure( + data=[ + go.Bar(y=[1, 2, 3], + marker={'opacity': 0.6, + 'color': 'green'}), + go.Scatter(x=[1, 3, 2], + marker={'size': 30, + 'color': [1, 1, 0]}), + go.Bar(y=[3, 2, 1], + marker={'opacity': 0.4, + 'color': [1, 0.5, 0]}) + ], + layout={'barmode': 'group'} + ) + + templated_fig = pio.to_templated(fig) + + expected_fig = go.Figure( + data=[ + go.Bar(y=[1, 2, 3]), + go.Scatter(x=[1, 3, 2], marker={'color': [1, 1, 0]}), + go.Bar(y=[3, 2, 1], marker={'color': [1, 0.5, 0]}) + ], + layout={ + 'template': { + 'data': { + 'scatter': [go.Scatter(marker={'size': 30})], + 'bar': [ + go.Bar(marker={'opacity': 0.6, + 'color': 'green'}), + go.Bar(marker={'opacity': 0.4}) + ]}, + 'layout': { + 'barmode': 'group' + } + } + } + ) + + self.assertEqual(pio.to_json(templated_fig), + pio.to_json(expected_fig)) + + def test_move_nested_trace_properties_existing_traces(self): + fig = go.Figure( + data=[ + go.Bar(y=[1, 2, 3], + marker={'opacity': 0.6, + 'color': 'green'}), + go.Scatter(x=[1, 3, 2], + marker={'size': 30, + 'color': [1, 1, 0]}), + go.Bar(y=[3, 2, 1], + marker={'opacity': 0.4, + 'color': [1, 0.5, 0]}) + ], + layout={'barmode': 'group', + 'template': { + 'data': { + 'bar': [go.Bar(marker={ + 'line': {'color': 'purple'}})] + } + }} + ) + + templated_fig = pio.to_templated(fig) + + expected_fig = go.Figure( + data=[ + go.Bar(y=[1, 2, 3]), + go.Scatter(x=[1, 3, 2], marker={'color': [1, 1, 0]}), + go.Bar(y=[3, 2, 1], marker={'color': [1, 0.5, 0]}) + ], + layout={ + 'template': { + 'data': { + 'scatter': [go.Scatter(marker={'size': 30})], + 'bar': [ + go.Bar(marker={'opacity': 0.6, + 'color': 'green', + 'line': { + 'color': 'purple' + }}), + go.Bar(marker={'opacity': 0.4}) + ]}, + 'layout': { + 'barmode': 'group' + } + } + } + ) + + self.assertEqual(pio.to_json(templated_fig), + pio.to_json(expected_fig)) From f94b4a712fecdb1a2e63aa75ec02a17da3a67372 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Tue, 9 Oct 2018 19:45:04 -0400 Subject: [PATCH 09/34] Added plotly.io.templates.merge_templates utility function --- plotly/io/_templates.py | 37 +++++++- .../test_graph_objs/test_template.py | 91 +++++++++++++++++++ 2 files changed, 127 insertions(+), 1 deletion(-) diff --git a/plotly/io/_templates.py b/plotly/io/_templates.py index 72eb9f0111a..02d58cac8ee 100644 --- a/plotly/io/_templates.py +++ b/plotly/io/_templates.py @@ -1,9 +1,13 @@ +from math import gcd + from plotly.validators.layout import TemplateValidator +from plotly.graph_objs.layout import Template from _plotly_utils.basevalidators import ( CompoundValidator, CompoundArrayValidator, is_array) import textwrap import copy +from functools import reduce # Templates configuration class @@ -125,6 +129,38 @@ def _available_templates_str(self): )) return available + def merge_templates(self, *args): + if args: + return reduce(self._merge_2_templates, args) + else: + return Template() + + def _merge_2_templates(self, template1, template2): + # Validate/copy input templates + result = self._validator.validate_coerce(template1) + other = self._validator.validate_coerce(template2) + + # Cycle traces + for trace_type in result.data: + result_traces = result.data[trace_type] + other_traces = other.data[trace_type] + + if result_traces and other_traces: + lcm = (len(result_traces) * len(other_traces) // + gcd(len(result_traces), len(other_traces))) + + # Cycle result traces + result.data[trace_type] = result_traces * ( + lcm // len(result_traces)) + + # Cycle other traces + other.data[trace_type] = other_traces * ( + lcm // len(other_traces)) + + # Perform update + result.update(other) + + return result # Make config a singleton object # ------------------------------ @@ -197,7 +233,6 @@ def walk_push_to_template(fig_obj, template_obj, skip): pass - def to_templated(fig, skip=('title', 'text')): """ diff --git a/plotly/tests/test_core/test_graph_objs/test_template.py b/plotly/tests/test_core/test_graph_objs/test_template.py index 8723af97d04..e6e97d315a6 100644 --- a/plotly/tests/test_core/test_graph_objs/test_template.py +++ b/plotly/tests/test_core/test_graph_objs/test_template.py @@ -350,3 +350,94 @@ def test_move_nested_trace_properties_existing_traces(self): self.assertEqual(pio.to_json(templated_fig), pio.to_json(expected_fig)) + + +class TestMergeTemplates(TestCase): + + def setUp(self): + self.template1 = go.layout.Template( + layout={'font': {'size': 20, 'family': 'Rockwell'}}, + data={ + 'scatter': [go.Scatter(line={'dash': 'solid'}), + go.Scatter(line={'dash': 'dot'})], + 'bar': [go.Bar(marker={'opacity': 0.7}), + go.Bar(marker={'opacity': 0.4})], + 'parcoords': [ + go.Parcoords(dimensiondefaults={'multiselect': True}) + ] + # no 'scattergl' + } + ) + + self.template2 = go.layout.Template( + layout={'paper_bgcolor': 'green', + 'font': {'size': 14, 'color': 'yellow'}}, + data={ + 'scatter': [go.Scatter(marker={'color': 'red'}), + go.Scatter(marker={'color': 'green'}), + go.Scatter(marker={'color': 'blue'})], + # no 'bar' + 'parcoords': [ + go.Parcoords(line={'colorscale': 'Viridis'}), + go.Parcoords(line={'colorscale': 'Blues'}) + ], + 'scattergl': [go.Scattergl(hoverinfo='x+y')] + } + ) + + self.expected1_2 = go.layout.Template( + layout={'paper_bgcolor': 'green', + 'font': {'size': 14, + 'color': 'yellow', + 'family': 'Rockwell'}}, + data={ + 'scatter': [ + go.Scatter(marker={'color': 'red'}, + line={'dash': 'solid'}), + go.Scatter(marker={'color': 'green'}, + line={'dash': 'dot'}), + go.Scatter(marker={'color': 'blue'}, + line={'dash': 'solid'}), + go.Scatter(marker={'color': 'red'}, + line={'dash': 'dot'}), + go.Scatter(marker={'color': 'green'}, + line={'dash': 'solid'}), + go.Scatter(marker={'color': 'blue'}, + line={'dash': 'dot'}), + ], + 'bar': [go.Bar(marker={'opacity': 0.7}), + go.Bar(marker={'opacity': 0.4})], + 'parcoords': [ + go.Parcoords(dimensiondefaults={'multiselect': True}, + line={'colorscale': 'Viridis'}), + go.Parcoords(dimensiondefaults={'multiselect': True}, + line={'colorscale': 'Blues'}) + ], + 'scattergl': [go.Scattergl(hoverinfo='x+y')] + } + ) + + def test_merge_0(self): + self.assertEqual(pio.templates.merge_templates(), + go.layout.Template()) + + def test_merge_1(self): + self.assertEqual(pio.templates.merge_templates(self.template1), + self.template1) + + def test_merge_2(self): + result = pio.templates.merge_templates(self.template1, self.template2) + expected = self.expected1_2 + + self.assertEqual(result, expected) + + def test_merge_3(self): + template3 = go.layout.Template(layout={'margin': {'l': 0, 'r': 0}}) + result = pio.templates.merge_templates( + self.template1, + self.template2, + template3) + + expected = self.expected1_2 + expected.update(template3) + self.assertEqual(result, expected) From 7fffd4107c189596203e3e43708e55eec223d807 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Tue, 9 Oct 2018 20:16:47 -0400 Subject: [PATCH 10/34] Support specifying flaglist of named templates to be merged together fig.layout.template = 'template1+template2' --- _plotly_utils/basevalidators.py | 15 ++++++++++- plotly/io/_templates.py | 15 +++++------ .../test_graph_objs/test_template.py | 27 +++++++++++++++++++ 3 files changed, 47 insertions(+), 10 deletions(-) diff --git a/_plotly_utils/basevalidators.py b/_plotly_utils/basevalidators.py index 8c35d5a5b28..02cc94c6ce2 100644 --- a/_plotly_utils/basevalidators.py +++ b/_plotly_utils/basevalidators.py @@ -2148,9 +2148,22 @@ def __init__(self, def validate_coerce(self, v, skip_invalid=False): import plotly.io as pio + # TODO: add custom description that includes available templates + # Move _templates to _plotly_utils so that it's available during + # codegen + try: + # Check if v is a template identifier + # (could be any hashable object) if v in pio.templates: - return pio.templates[v] + return copy.deepcopy(pio.templates[v]) + # Otherwise, if v is a string, check to see if it consists of + # multiple template names joined on '+' characters + elif isinstance(v, string_types): + template_names = v.split('+') + if all([name in pio.templates for name in template_names]): + return pio.templates.merge_templates(*template_names) + except TypeError: # v is un-hashable pass diff --git a/plotly/io/_templates.py b/plotly/io/_templates.py index 02d58cac8ee..48147336988 100644 --- a/plotly/io/_templates.py +++ b/plotly/io/_templates.py @@ -94,16 +94,12 @@ def default(self): @default.setter def default(self, value): - if value is not None and value not in self._templates: - raise ValueError(""" -Cannot set default template to {value} -because there is no template registered with this name. - - Available templates: -{available}""".format( - value=repr(value), - available=self._available_templates_str())) + # Validate value + # Could be a Template object, the key of a registered template, + # Or a string containing the names of multiple templates joined on + # '+' characters + self._validator.validate_coerce(value) self._default = value def __repr__(self): @@ -162,6 +158,7 @@ def _merge_2_templates(self, template1, template2): return result + # Make config a singleton object # ------------------------------ templates = TemplatesConfig() diff --git a/plotly/tests/test_core/test_graph_objs/test_template.py b/plotly/tests/test_core/test_graph_objs/test_template.py index e6e97d315a6..faf7e7c5fb2 100644 --- a/plotly/tests/test_core/test_graph_objs/test_template.py +++ b/plotly/tests/test_core/test_graph_objs/test_template.py @@ -1,4 +1,6 @@ from __future__ import absolute_import + +import copy from unittest import TestCase from nose.tools import raises @@ -355,6 +357,7 @@ def test_move_nested_trace_properties_existing_traces(self): class TestMergeTemplates(TestCase): def setUp(self): + self.template1 = go.layout.Template( layout={'font': {'size': 20, 'family': 'Rockwell'}}, data={ @@ -368,6 +371,8 @@ def setUp(self): # no 'scattergl' } ) + pio.templates['template1'] = self.template1 + self.template1_orig = copy.deepcopy(self.template1) self.template2 = go.layout.Template( layout={'paper_bgcolor': 'green', @@ -384,6 +389,8 @@ def setUp(self): 'scattergl': [go.Scattergl(hoverinfo='x+y')] } ) + pio.templates['template2'] = self.template2 + self.template2_orig = copy.deepcopy(self.template2) self.expected1_2 = go.layout.Template( layout={'paper_bgcolor': 'green', @@ -431,6 +438,10 @@ def test_merge_2(self): self.assertEqual(result, expected) + # Make sure input templates weren't modified + self.assertEqual(self.template1, self.template1_orig) + self.assertEqual(self.template2, self.template2_orig) + def test_merge_3(self): template3 = go.layout.Template(layout={'margin': {'l': 0, 'r': 0}}) result = pio.templates.merge_templates( @@ -441,3 +452,19 @@ def test_merge_3(self): expected = self.expected1_2 expected.update(template3) self.assertEqual(result, expected) + + # Make sure input templates weren't modified + self.assertEqual(self.template1, self.template1_orig) + self.assertEqual(self.template2, self.template2_orig) + + def test_merge_by_flaglist_string(self): + layout = go.Layout() + layout.template = 'template1+template2' + result = layout.template + expected = self.expected1_2 + + self.assertEqual(result, expected) + + # Make sure input templates weren't modified + self.assertEqual(self.template1, self.template1_orig) + self.assertEqual(self.template2, self.template2_orig) From 9955bb4b36038e7b916dd6c7cfe8abe15e0a4658 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Wed, 10 Oct 2018 05:46:33 -0400 Subject: [PATCH 11/34] Customize the description of the TemplateValidator --- _plotly_utils/basevalidators.py | 19 +++++++++++++++---- plotly/graph_objs/_layout.py | 10 ++++++++++ 2 files changed, 25 insertions(+), 4 deletions(-) diff --git a/_plotly_utils/basevalidators.py b/_plotly_utils/basevalidators.py index 02cc94c6ce2..b55d7c99016 100644 --- a/_plotly_utils/basevalidators.py +++ b/_plotly_utils/basevalidators.py @@ -2145,13 +2145,24 @@ def __init__(self, **kwargs ) + def description(self): + compound_description = super(BaseTemplateValidator, self).description() + compound_description += """ + - The name of a registered template where current registered templates + are stored in the plotly.io.templates configuration object. The names + of all registered templates can be retrieved with: + >>> import plotly.io as pio + >>> list(pio.templates) + - A string containing multiple registered template names, joined on '+' + characters (e.g. 'template1+template2'). In this case the resulting + template is computed by merging together the collection of registered + templates""" + + return compound_description + def validate_coerce(self, v, skip_invalid=False): import plotly.io as pio - # TODO: add custom description that includes available templates - # Move _templates to _plotly_utils so that it's available during - # codegen - try: # Check if v is a template identifier # (could be any hashable object) diff --git a/plotly/graph_objs/_layout.py b/plotly/graph_objs/_layout.py index 24c9c111867..f7f3a6dbd43 100644 --- a/plotly/graph_objs/_layout.py +++ b/plotly/graph_objs/_layout.py @@ -2297,6 +2297,16 @@ def template(self): layout plotly.graph_objs.layout.template.Layout instance or dict with compatible properties + + - The name of a registered template where current registered templates + are stored in the plotly.io.templates configuration object. The names + of all registered templates can be retrieved with: + >>> import plotly.io as pio + >>> list(pio.templates) + - A string containing multiple registered template names, joined on '+' + characters (e.g. 'template1+template2'). In this case the resulting + template is computed by merging together the collection of registered + templates Returns ------- From 3dc8cde52e1e3273840a1c5cfbd32b6429e70891 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Wed, 10 Oct 2018 06:31:41 -0400 Subject: [PATCH 12/34] Cleanup docstring documentation of template functions --- plotly/io/_templates.py | 131 ++++++++++++++++++++++++++++++++++++++-- 1 file changed, 126 insertions(+), 5 deletions(-) diff --git a/plotly/io/_templates.py b/plotly/io/_templates.py index 48147336988..52b74a55d27 100644 --- a/plotly/io/_templates.py +++ b/plotly/io/_templates.py @@ -1,5 +1,7 @@ from math import gcd +from plotly.basedatatypes import BaseFigure +from plotly.graph_objs import Figure from plotly.validators.layout import TemplateValidator from plotly.graph_objs.layout import Template from _plotly_utils.basevalidators import ( @@ -126,12 +128,52 @@ def _available_templates_str(self): return available def merge_templates(self, *args): + """ + Merge a collection of templates into a single combined template. + Templates are process from left to right so if multiple templates + specify the same propery, the right-most template will take + precedence. + + Parameters + ---------- + args: list of Template + Zero or more template objects (or dicts with compatible properties) + + Returns + ------- + template: + A combined template object + + Examples + -------- + >>> pio.templates.merge_templates( + ... go.layout.Template(layout={'font': {'size': 20}}), + ... go.layout.Template(data={'scatter': [{'mode': 'markers'}]}), + ... go.layout.Template(layout={'font': {'family': 'Courier'}})) + layout.Template({ + 'data': {'scatter': [{'mode': 'markers', 'type': 'scatter'}]}, + 'layout': {'font': {'family': 'Courier', 'size': 20}} + }) + """ if args: return reduce(self._merge_2_templates, args) else: return Template() def _merge_2_templates(self, template1, template2): + """ + Helper function for merge_templates that merges exactly two templates + + Parameters + ---------- + template1: Template + template2: Template + + Returns + ------- + Template: + merged template + """ # Validate/copy input templates result = self._validator.validate_coerce(template1) other = self._validator.validate_coerce(template2) @@ -169,6 +211,7 @@ def _merge_2_templates(self, template1, template2): # ------------------ def walk_push_to_template(fig_obj, template_obj, skip): """ + Move style properties from fig_obj to template_obj. Parameters ---------- @@ -232,19 +275,97 @@ def walk_push_to_template(fig_obj, template_obj, skip): def to_templated(fig, skip=('title', 'text')): """ + Return a copy of a figure where all styling properties have been moved + into the figure's template. The template property of the resulting figure + may then be used to set the default styling of other figures. Parameters ---------- - fig: plotly.basedatatypes.BaseFigure + fig + Figure object or dict representing a figure skip - collection of names of properties to skip when moving properties to - the template. + A collection of names of properties to skip when moving properties to + the template. Defaults to ('title', 'text') so that the text + of figure titles, axis titles, and annotations does not become part of + the template + + Examples + -------- + Imports + >>> import plotly.graph_objs as go + >>> import plotly.io as pio + + Construct a figure with large courier text + >>> fig = go.Figure(layout={'title': 'Figure Title', + ... 'font': {'size': 20, 'family': 'Courier'}}) + >>> fig + Figure({ + 'data': [], + 'layout': {'title': 'Figure Title', + 'font': {'family': 'Courier', 'size': 20}} + }) + + Convert to a figure with a template. Note how the 'font' properties have + been moved into the template property. + >>> templated_fig = pio.to_templated(fig) + >>> templated_fig + Figure({ + 'data': [], + 'layout': {'title': 'Figure Title', + 'template': {'layout': {'font': {'family': 'Courier', + 'size': 20}}}} + }) + + Next create a new figure with this template + + >>> fig2 = go.Figure(layout={ + ... 'title': 'Figure 2 Title', + ... 'template': templated_fig.layout.template}) + >>> fig2 + Figure({ + 'data': [], + 'layout': {'title': 'Figure 2 Title', + 'template': {'layout': {'font': {'family': 'Courier', + 'size': 20}}}} + }) + + The default font in fig2 will now be size 20 Courier. + + Next, register as a named template... + >>> pio.templates['large_courier'] = templated_fig.layout.template + + and specify this template by name when constructing a figure. + + >>> go.Figure(layout={ + ... 'title': 'Figure 3 Title', + ... 'template': 'large_courier'}) + Figure({ + 'data': [], + 'layout': {'title': 'Figure 3 Title', + 'template': {'layout': {'font': {'family': 'Courier', + 'size': 20}}}} + }) + + Finally, set this as the default template to be applied to all new figures + + >>> pio.templates.default = 'large_courier' + >>> go.Figure(layout={'title': 'Figure 4 Title'}) + Figure({ + 'data': [], + 'layout': {'title': 'Figure 4 Title', + 'template': {'layout': {'font': {'family': 'Courier', + 'size': 20}}}} + }) Returns ------- - + figure """ + # process fig + if not isinstance(fig, BaseFigure): + fig = Figure(fig) + # Process skip if not skip: skip = set() @@ -254,7 +375,7 @@ def to_templated(fig, skip=('title', 'text')): # Always skip uids skip.add('uid') - # Initialize templated figure with copy of input current figure + # Initialize templated figure with deep copy of input figure templated_fig = copy.deepcopy(fig) # Initialize template object From 8ddc56f3b7ce40223ce224aa0d773f4a887e131e Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Thu, 11 Oct 2018 19:57:42 -0400 Subject: [PATCH 13/34] Added initial ggplot2 theme and logic to lazily load theme from file on first use --- plotly/io/_templates.py | 26 +- plotly/package_data/templates/ggplot2.json | 1 + templategen/__init__.py | 10 + templategen/ggplot2.py | 122 +++ templategen/utils/__init__.py | 50 + templategen/utils/colors.py | 1124 ++++++++++++++++++++ 6 files changed, 1332 insertions(+), 1 deletion(-) create mode 100644 plotly/package_data/templates/ggplot2.json create mode 100644 templategen/__init__.py create mode 100644 templategen/ggplot2.py create mode 100644 templategen/utils/__init__.py create mode 100644 templategen/utils/colors.py diff --git a/plotly/io/_templates.py b/plotly/io/_templates.py index 52b74a55d27..52bf3b25af8 100644 --- a/plotly/io/_templates.py +++ b/plotly/io/_templates.py @@ -8,10 +8,19 @@ CompoundValidator, CompoundArrayValidator, is_array) import textwrap +import pkgutil + import copy +import os +import json from functools import reduce +# Create Lazy sentinal object to indicate that a template should be loaded +# on-demand from package_data +Lazy = object() + + # Templates configuration class # ----------------------------- class TemplatesConfig(object): @@ -22,6 +31,12 @@ def __init__(self): # Initialize properties dict self._templates = {} + + # Initialize built-in templates + default_templates = ['ggplot2'] + for template_name in default_templates: + self._templates[template_name] = Lazy + self._validator = TemplateValidator() self._default = None @@ -37,7 +52,16 @@ def __iter__(self): return iter(self._templates) def __getitem__(self, item): - return self._templates[item] + template = self._templates[item] + if template is Lazy: + # Load template from package data + path = os.path.join('package_data', 'templates', item + '.json') + template_str = pkgutil.get_data('plotly', path).decode('utf-8') + template_dict = json.loads(template_str) + template = Template(template_dict) + self._templates[item] = template + + return template def __setitem__(self, key, value): self._templates[key] = self._validator.validate_coerce(value) diff --git a/plotly/package_data/templates/ggplot2.json b/plotly/package_data/templates/ggplot2.json new file mode 100644 index 00000000000..efa2b21e1a7 --- /dev/null +++ b/plotly/package_data/templates/ggplot2.json @@ -0,0 +1 @@ +{"layout": {"font": {"color": "rgb(77,77,77)"}, "paper_bgcolor": "white", "plot_bgcolor": "rgb(237,237,237)", "polar": {"bgcolor": "rgb(237,237,237)", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "ternary": {"bgcolor": "rgb(237,237,237)", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "colorway": ["#F8766D", "#00BA38", "#619CFF"], "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "black", "line": {"width": 0}, "opacity": 0.3}, "annotationdefaults": {"arrowhead": 0, "arrowwidth": 1}, "geo": {"landcolor": "rgb(237,237,237)", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "choropleth": [{"type": "choropleth", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmap": [{"type": "heatmap", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contour": [{"type": "contour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "surface": [{"type": "surface", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "carpet": [{"aaxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "baxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "rgb(237,237,237)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(217,217,217)"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/templategen/__init__.py b/templategen/__init__.py new file mode 100644 index 00000000000..9ba3ec27953 --- /dev/null +++ b/templategen/__init__.py @@ -0,0 +1,10 @@ +from templategen.ggplot2 import generate_ggplot2_template +from plotly.utils import PlotlyJSONEncoder +import json + +if __name__ == '__main__': + + # ggplot2 + template = generate_ggplot2_template() + with open('plotly/package_data/templates/ggplot2.json', 'w') as f: + plotly_schema = json.dump(template, f, cls=PlotlyJSONEncoder) diff --git a/templategen/ggplot2.py b/templategen/ggplot2.py new file mode 100644 index 00000000000..db00e531449 --- /dev/null +++ b/templategen/ggplot2.py @@ -0,0 +1,122 @@ +import plotly.graph_objs as go +from templategen.utils import set_all_colorscales, set_all_colorbars + +from .utils.colors import colors + + +def generate_ggplot2_template(): + # Initialize template + # ------------------- + template = go.layout.Template() + + # Define colors + # ------------- + # Based on theme_gray from + # https://github.com/tidyverse/ggplot2/blob/master/R/theme-defaults.r + + axis_ticks_clr = colors['gray20'] + axis_text_clr = colors['gray30'] + panel_background_clr = colors['gray93'] + panel_grid_clr = 'white' + zerolinecolor = 'white' + plot_background_clr = 'white' + paper_clr = "white" + strip_clr = colors['gray85'] + + # Set global font color + template.layout.font.color = axis_text_clr + + # Set background colors + template.layout.paper_bgcolor = paper_clr + template.layout.plot_bgcolor = panel_background_clr + template.layout.polar.bgcolor = panel_background_clr + template.layout.ternary.bgcolor = panel_background_clr + + # Hue cycle for 3 categories + template.layout.colorway = ['#F8766D', '#00BA38', '#619CFF'] + + # Set colorscale + # Colors picked using colorpicker from + # https://ggplot2.tidyverse.org/reference/scale_colour_continuous.html + colorscale = [[0, 'rgb(20,44,66)'], [1, 'rgb(90,179,244)']] + + set_all_colorscales(template, colorscale) + + # Set colorbar + # Note the light inward ticks in + # https://ggplot2.tidyverse.org/reference/scale_colour_continuous.html + colorbar = dict(outlinewidth=0, + tickcolor=panel_background_clr, + ticks='inside', + len=0.2, + ticklen=6) + + set_all_colorbars(template, colorbar) + + # Common axis properties + axis = dict(showgrid=True, + gridcolor=panel_grid_clr, + linecolor=panel_grid_clr, + tickcolor=axis_ticks_clr, + ticks="outside") + + cartesian_axis = dict(axis, zerolinecolor=zerolinecolor) + + # Cartesian + template.layout.xaxis = cartesian_axis + template.layout.yaxis = cartesian_axis + + # 3D + axis_3d = dict(cartesian_axis, backgroundcolor=panel_background_clr, + showbackground=True) + template.layout.scene.xaxis = axis_3d + template.layout.scene.yaxis = axis_3d + template.layout.scene.zaxis = axis_3d + + # Ternary + template.layout.ternary.aaxis = axis + template.layout.ternary.baxis = axis + template.layout.ternary.caxis = axis + + # Polar + template.layout.polar.angularaxis = axis + template.layout.polar.radialaxis = axis + + # Carpet + carpet_axis = dict( + gridcolor=panel_grid_clr, + linecolor=panel_grid_clr, + startlinecolor=axis_ticks_clr, + endlinecolor=axis_ticks_clr, + minorgridcolor=panel_grid_clr) + + template.data.carpet = [{ + 'aaxis': carpet_axis, + 'baxis': carpet_axis}] + + # Shape defaults + # semi-transparent black and no outline + template.layout.shapedefaults = dict(fillcolor='black', + line={'width': 0}, + opacity=0.3) + + # Annotation defaults + # Remove arrow head and make line thinner + template.layout.annotationdefaults.arrowhead = 0 + template.layout.annotationdefaults.arrowwidth = 1 + + # Geo + template.layout.geo.landcolor = panel_background_clr + template.layout.geo.subunitcolor = 'white' + template.layout.geo.showland = True + template.layout.geo.showlakes = True + template.layout.geo.lakecolor = 'white' + + # Table + template.data.table = [{'header': {'fill': {'color': strip_clr}, + 'line': {'color': panel_grid_clr}}, + 'cells': {'fill': {'color': panel_background_clr}, + 'line': {'color': panel_grid_clr}}}] + + return template + diff --git a/templategen/utils/__init__.py b/templategen/utils/__init__.py new file mode 100644 index 00000000000..921f951b8f6 --- /dev/null +++ b/templategen/utils/__init__.py @@ -0,0 +1,50 @@ +colorscale_parent_paths = [ + ('histogram2dcontour',), + ('choropleth',), + ('histogram2d',), + ('heatmap',), + ('heatmapgl',), + ('contourcarpet',), + ('contour',), + ('surface',), + ('mesh3d',), + ('scatter', 'marker'), + ('parcoords', 'line'), + ('scatterpolargl', 'marker'), + ('bar', 'marker'), + ('scattergeo', 'marker'), + ('scatterpolar', 'marker'), + ('histogram', 'marker'), + ('scattergl', 'marker'), + ('scatter3d', 'line'), + ('scatter3d', 'marker'), + ('scattermapbox', 'marker'), + ('scatterternary', 'marker'), + ('scattercarpet', 'marker'), + ('scatter', 'marker', 'line'), + ('scatterpolargl', 'marker', 'line'), + ('bar', 'marker', 'line') +] + + +def set_all_colorscales(template, colorscale): + for parent_path in colorscale_parent_paths: + if not template.data[parent_path[0]]: + template.data[parent_path[0]] = [{}] + + for trace in template.data[parent_path[0]]: + parent = trace[parent_path[1:]] + if 'colorscale' in parent: + parent.colorscale = colorscale + + +def set_all_colorbars(template, colorbar): + for parent_path in colorscale_parent_paths: + if not template.data[parent_path[0]]: + template.data[parent_path[0]] = [{}] + + for trace in template.data[parent_path[0]]: + parent = trace[parent_path[1:]] + + if 'colorbar' in parent: + parent.colorbar = colorbar diff --git a/templategen/utils/colors.py b/templategen/utils/colors.py new file mode 100644 index 00000000000..cacf74dede5 --- /dev/null +++ b/templategen/utils/colors.py @@ -0,0 +1,1124 @@ +"""Provide RGB color constants and a colors dictionary with +elements formatted: colors[colorname] = CONSTANT + +From: +""" + +colors = {} #dict of colors + +def RGB(red, green, blue): + '''Returns color in hex format''' + # return '#{:02X}{:02X}{:02X}'.format(red, green, blue) + return 'rgb({},{},{})'.format(red, green, blue) + +#Color Contants +ALICEBLUE = RGB(240, 248, 255) +ANTIQUEWHITE = RGB(250, 235, 215) +ANTIQUEWHITE1 = RGB(255, 239, 219) +ANTIQUEWHITE2 = RGB(238, 223, 204) +ANTIQUEWHITE3 = RGB(205, 192, 176) +ANTIQUEWHITE4 = RGB(139, 131, 120) +AQUA = RGB(0, 255, 255) +AQUAMARINE1 = RGB(127, 255, 212) +AQUAMARINE2 = RGB(118, 238, 198) +AQUAMARINE3 = RGB(102, 205, 170) +AQUAMARINE4 = RGB(69, 139, 116) +AZURE1 = RGB(240, 255, 255) +AZURE2 = RGB(224, 238, 238) +AZURE3 = RGB(193, 205, 205) +AZURE4 = RGB(131, 139, 139) +BANANA = RGB(227, 207, 87) +BEIGE = RGB(245, 245, 220) +BISQUE1 = RGB(255, 228, 196) +BISQUE2 = RGB(238, 213, 183) +BISQUE3 = RGB(205, 183, 158) +BISQUE4 = RGB(139, 125, 107) +BLACK = RGB(0, 0, 0) +BLANCHEDALMOND = RGB(255, 235, 205) +BLUE = RGB(0, 0, 255) +BLUE2 = RGB(0, 0, 238) +BLUE3 = RGB(0, 0, 205) +BLUE4 = RGB(0, 0, 139) +BLUEVIOLET = RGB(138, 43, 226) +BRICK = RGB(156, 102, 31) +BROWN = RGB(165, 42, 42) +BROWN1 = RGB(255, 64, 64) +BROWN2 = RGB(238, 59, 59) +BROWN3 = RGB(205, 51, 51) +BROWN4 = RGB(139, 35, 35) +BURLYWOOD = RGB(222, 184, 135) +BURLYWOOD1 = RGB(255, 211, 155) +BURLYWOOD2 = RGB(238, 197, 145) +BURLYWOOD3 = RGB(205, 170, 125) +BURLYWOOD4 = RGB(139, 115, 85) +BURNTSIENNA = RGB(138, 54, 15) +BURNTUMBER = RGB(138, 51, 36) +CADETBLUE = RGB(95, 158, 160) +CADETBLUE1 = RGB(152, 245, 255) +CADETBLUE2 = RGB(142, 229, 238) +CADETBLUE3 = RGB(122, 197, 205) +CADETBLUE4 = RGB(83, 134, 139) +CADMIUMORANGE = RGB(255, 97, 3) +CADMIUMYELLOW = RGB(255, 153, 18) +CARROT = RGB(237, 145, 33) +CHARTREUSE1 = RGB(127, 255, 0) +CHARTREUSE2 = RGB(118, 238, 0) +CHARTREUSE3 = RGB(102, 205, 0) +CHARTREUSE4 = RGB(69, 139, 0) +CHOCOLATE = RGB(210, 105, 30) +CHOCOLATE1 = RGB(255, 127, 36) +CHOCOLATE2 = RGB(238, 118, 33) +CHOCOLATE3 = RGB(205, 102, 29) +CHOCOLATE4 = RGB(139, 69, 19) +COBALT = RGB(61, 89, 171) +COBALTGREEN = RGB(61, 145, 64) +COLDGREY = RGB(128, 138, 135) +CORAL = RGB(255, 127, 80) +CORAL1 = RGB(255, 114, 86) +CORAL2 = RGB(238, 106, 80) +CORAL3 = RGB(205, 91, 69) +CORAL4 = RGB(139, 62, 47) +CORNFLOWERBLUE = RGB(100, 149, 237) +CORNSILK1 = RGB(255, 248, 220) +CORNSILK2 = RGB(238, 232, 205) +CORNSILK3 = RGB(205, 200, 177) +CORNSILK4 = RGB(139, 136, 120) +CRIMSON = RGB(220, 20, 60) +CYAN2 = RGB(0, 238, 238) +CYAN3 = RGB(0, 205, 205) +CYAN4 = RGB(0, 139, 139) +DARKGOLDENROD = RGB(184, 134, 11) +DARKGOLDENROD1 = RGB(255, 185, 15) +DARKGOLDENROD2 = RGB(238, 173, 14) +DARKGOLDENROD3 = RGB(205, 149, 12) +DARKGOLDENROD4 = RGB(139, 101, 8) +DARKGRAY = RGB(169, 169, 169) +DARKGREEN = RGB(0, 100, 0) +DARKKHAKI = RGB(189, 183, 107) +DARKOLIVEGREEN = RGB(85, 107, 47) +DARKOLIVEGREEN1 = RGB(202, 255, 112) +DARKOLIVEGREEN2 = RGB(188, 238, 104) +DARKOLIVEGREEN3 = RGB(162, 205, 90) +DARKOLIVEGREEN4 = RGB(110, 139, 61) +DARKORANGE = RGB(255, 140, 0) +DARKORANGE1 = RGB(255, 127, 0) +DARKORANGE2 = RGB(238, 118, 0) +DARKORANGE3 = RGB(205, 102, 0) +DARKORANGE4 = RGB(139, 69, 0) +DARKORCHID = RGB(153, 50, 204) +DARKORCHID1 = RGB(191, 62, 255) +DARKORCHID2 = RGB(178, 58, 238) +DARKORCHID3 = RGB(154, 50, 205) +DARKORCHID4 = RGB(104, 34, 139) +DARKSALMON = RGB(233, 150, 122) +DARKSEAGREEN = RGB(143, 188, 143) +DARKSEAGREEN1 = RGB(193, 255, 193) +DARKSEAGREEN2 = RGB(180, 238, 180) +DARKSEAGREEN3 = RGB(155, 205, 155) +DARKSEAGREEN4 = RGB(105, 139, 105) +DARKSLATEBLUE = RGB(72, 61, 139) +DARKSLATEGRAY = RGB(47, 79, 79) +DARKSLATEGRAY1 = RGB(151, 255, 255) +DARKSLATEGRAY2 = RGB(141, 238, 238) +DARKSLATEGRAY3 = RGB(121, 205, 205) +DARKSLATEGRAY4 = RGB(82, 139, 139) +DARKTURQUOISE = RGB(0, 206, 209) +DARKVIOLET = RGB(148, 0, 211) +DEEPPINK1 = RGB(255, 20, 147) +DEEPPINK2 = RGB(238, 18, 137) +DEEPPINK3 = RGB(205, 16, 118) +DEEPPINK4 = RGB(139, 10, 80) +DEEPSKYBLUE1 = RGB(0, 191, 255) +DEEPSKYBLUE2 = RGB(0, 178, 238) +DEEPSKYBLUE3 = RGB(0, 154, 205) +DEEPSKYBLUE4 = RGB(0, 104, 139) +DIMGRAY = RGB(105, 105, 105) +DIMGRAY = RGB(105, 105, 105) +DODGERBLUE1 = RGB(30, 144, 255) +DODGERBLUE2 = RGB(28, 134, 238) +DODGERBLUE3 = RGB(24, 116, 205) +DODGERBLUE4 = RGB(16, 78, 139) +EGGSHELL = RGB(252, 230, 201) +EMERALDGREEN = RGB(0, 201, 87) +FIREBRICK = RGB(178, 34, 34) +FIREBRICK1 = RGB(255, 48, 48) +FIREBRICK2 = RGB(238, 44, 44) +FIREBRICK3 = RGB(205, 38, 38) +FIREBRICK4 = RGB(139, 26, 26) +FLESH = RGB(255, 125, 64) +FLORALWHITE = RGB(255, 250, 240) +FORESTGREEN = RGB(34, 139, 34) +GAINSBORO = RGB(220, 220, 220) +GHOSTWHITE = RGB(248, 248, 255) +GOLD1 = RGB(255, 215, 0) +GOLD2 = RGB(238, 201, 0) +GOLD3 = RGB(205, 173, 0) +GOLD4 = RGB(139, 117, 0) +GOLDENROD = RGB(218, 165, 32) +GOLDENROD1 = RGB(255, 193, 37) +GOLDENROD2 = RGB(238, 180, 34) +GOLDENROD3 = RGB(205, 155, 29) +GOLDENROD4 = RGB(139, 105, 20) +GRAY = RGB(128, 128, 128) +GRAY1 = RGB(3, 3, 3) +GRAY10 = RGB(26, 26, 26) +GRAY11 = RGB(28, 28, 28) +GRAY12 = RGB(31, 31, 31) +GRAY13 = RGB(33, 33, 33) +GRAY14 = RGB(36, 36, 36) +GRAY15 = RGB(38, 38, 38) +GRAY16 = RGB(41, 41, 41) +GRAY17 = RGB(43, 43, 43) +GRAY18 = RGB(46, 46, 46) +GRAY19 = RGB(48, 48, 48) +GRAY2 = RGB(5, 5, 5) +GRAY20 = RGB(51, 51, 51) +GRAY21 = RGB(54, 54, 54) +GRAY22 = RGB(56, 56, 56) +GRAY23 = RGB(59, 59, 59) +GRAY24 = RGB(61, 61, 61) +GRAY25 = RGB(64, 64, 64) +GRAY26 = RGB(66, 66, 66) +GRAY27 = RGB(69, 69, 69) +GRAY28 = RGB(71, 71, 71) +GRAY29 = RGB(74, 74, 74) +GRAY3 = RGB(8, 8, 8) +GRAY30 = RGB(77, 77, 77) +GRAY31 = RGB(79, 79, 79) +GRAY32 = RGB(82, 82, 82) +GRAY33 = RGB(84, 84, 84) +GRAY34 = RGB(87, 87, 87) +GRAY35 = RGB(89, 89, 89) +GRAY36 = RGB(92, 92, 92) +GRAY37 = RGB(94, 94, 94) +GRAY38 = RGB(97, 97, 97) +GRAY39 = RGB(99, 99, 99) +GRAY4 = RGB(10, 10, 10) +GRAY40 = RGB(102, 102, 102) +GRAY42 = RGB(107, 107, 107) +GRAY43 = RGB(110, 110, 110) +GRAY44 = RGB(112, 112, 112) +GRAY45 = RGB(115, 115, 115) +GRAY46 = RGB(117, 117, 117) +GRAY47 = RGB(120, 120, 120) +GRAY48 = RGB(122, 122, 122) +GRAY49 = RGB(125, 125, 125) +GRAY5 = RGB(13, 13, 13) +GRAY50 = RGB(127, 127, 127) +GRAY51 = RGB(130, 130, 130) +GRAY52 = RGB(133, 133, 133) +GRAY53 = RGB(135, 135, 135) +GRAY54 = RGB(138, 138, 138) +GRAY55 = RGB(140, 140, 140) +GRAY56 = RGB(143, 143, 143) +GRAY57 = RGB(145, 145, 145) +GRAY58 = RGB(148, 148, 148) +GRAY59 = RGB(150, 150, 150) +GRAY6 = RGB(15, 15, 15) +GRAY60 = RGB(153, 153, 153) +GRAY61 = RGB(156, 156, 156) +GRAY62 = RGB(158, 158, 158) +GRAY63 = RGB(161, 161, 161) +GRAY64 = RGB(163, 163, 163) +GRAY65 = RGB(166, 166, 166) +GRAY66 = RGB(168, 168, 168) +GRAY67 = RGB(171, 171, 171) +GRAY68 = RGB(173, 173, 173) +GRAY69 = RGB(176, 176, 176) +GRAY7 = RGB(18, 18, 18) +GRAY70 = RGB(179, 179, 179) +GRAY71 = RGB(181, 181, 181) +GRAY72 = RGB(184, 184, 184) +GRAY73 = RGB(186, 186, 186) +GRAY74 = RGB(189, 189, 189) +GRAY75 = RGB(191, 191, 191) +GRAY76 = RGB(194, 194, 194) +GRAY77 = RGB(196, 196, 196) +GRAY78 = RGB(199, 199, 199) +GRAY79 = RGB(201, 201, 201) +GRAY8 = RGB(20, 20, 20) +GRAY80 = RGB(204, 204, 204) +GRAY81 = RGB(207, 207, 207) +GRAY82 = RGB(209, 209, 209) +GRAY83 = RGB(212, 212, 212) +GRAY84 = RGB(214, 214, 214) +GRAY85 = RGB(217, 217, 217) +GRAY86 = RGB(219, 219, 219) +GRAY87 = RGB(222, 222, 222) +GRAY88 = RGB(224, 224, 224) +GRAY89 = RGB(227, 227, 227) +GRAY9 = RGB(23, 23, 23) +GRAY90 = RGB(229, 229, 229) +GRAY91 = RGB(232, 232, 232) +GRAY92 = RGB(235, 235, 235) +GRAY93 = RGB(237, 237, 237) +GRAY94 = RGB(240, 240, 240) +GRAY95 = RGB(242, 242, 242) +GRAY97 = RGB(247, 247, 247) +GRAY98 = RGB(250, 250, 250) +GRAY99 = RGB(252, 252, 252) +GREEN = RGB(0, 128, 0) +GREEN1 = RGB(0, 255, 0) +GREEN2 = RGB(0, 238, 0) +GREEN3 = RGB(0, 205, 0) +GREEN4 = RGB(0, 139, 0) +GREENYELLOW = RGB(173, 255, 47) +HONEYDEW1 = RGB(240, 255, 240) +HONEYDEW2 = RGB(224, 238, 224) +HONEYDEW3 = RGB(193, 205, 193) +HONEYDEW4 = RGB(131, 139, 131) +HOTPINK = RGB(255, 105, 180) +HOTPINK1 = RGB(255, 110, 180) +HOTPINK2 = RGB(238, 106, 167) +HOTPINK3 = RGB(205, 96, 144) +HOTPINK4 = RGB(139, 58, 98) +INDIANRED = RGB(176, 23, 31) +INDIANRED = RGB(205, 92, 92) +INDIANRED1 = RGB(255, 106, 106) +INDIANRED2 = RGB(238, 99, 99) +INDIANRED3 = RGB(205, 85, 85) +INDIANRED4 = RGB(139, 58, 58) +INDIGO = RGB(75, 0, 130) +IVORY1 = RGB(255, 255, 240) +IVORY2 = RGB(238, 238, 224) +IVORY3 = RGB(205, 205, 193) +IVORY4 = RGB(139, 139, 131) +IVORYBLACK = RGB(41, 36, 33) +KHAKI = RGB(240, 230, 140) +KHAKI1 = RGB(255, 246, 143) +KHAKI2 = RGB(238, 230, 133) +KHAKI3 = RGB(205, 198, 115) +KHAKI4 = RGB(139, 134, 78) +LAVENDER = RGB(230, 230, 250) +LAVENDERBLUSH1 = RGB(255, 240, 245) +LAVENDERBLUSH2 = RGB(238, 224, 229) +LAVENDERBLUSH3 = RGB(205, 193, 197) +LAVENDERBLUSH4 = RGB(139, 131, 134) +LAWNGREEN = RGB(124, 252, 0) +LEMONCHIFFON1 = RGB(255, 250, 205) +LEMONCHIFFON2 = RGB(238, 233, 191) +LEMONCHIFFON3 = RGB(205, 201, 165) +LEMONCHIFFON4 = RGB(139, 137, 112) +LIGHTBLUE = RGB(173, 216, 230) +LIGHTBLUE1 = RGB(191, 239, 255) +LIGHTBLUE2 = RGB(178, 223, 238) +LIGHTBLUE3 = RGB(154, 192, 205) +LIGHTBLUE4 = RGB(104, 131, 139) +LIGHTCORAL = RGB(240, 128, 128) +LIGHTCYAN1 = RGB(224, 255, 255) +LIGHTCYAN2 = RGB(209, 238, 238) +LIGHTCYAN3 = RGB(180, 205, 205) +LIGHTCYAN4 = RGB(122, 139, 139) +LIGHTGOLDENROD1 = RGB(255, 236, 139) +LIGHTGOLDENROD2 = RGB(238, 220, 130) +LIGHTGOLDENROD3 = RGB(205, 190, 112) +LIGHTGOLDENROD4 = RGB(139, 129, 76) +LIGHTGOLDENRODYELLOW = RGB(250, 250, 210) +LIGHTGREY = RGB(211, 211, 211) +LIGHTPINK = RGB(255, 182, 193) +LIGHTPINK1 = RGB(255, 174, 185) +LIGHTPINK2 = RGB(238, 162, 173) +LIGHTPINK3 = RGB(205, 140, 149) +LIGHTPINK4 = RGB(139, 95, 101) +LIGHTSALMON1 = RGB(255, 160, 122) +LIGHTSALMON2 = RGB(238, 149, 114) +LIGHTSALMON3 = RGB(205, 129, 98) +LIGHTSALMON4 = RGB(139, 87, 66) +LIGHTSEAGREEN = RGB(32, 178, 170) +LIGHTSKYBLUE = RGB(135, 206, 250) +LIGHTSKYBLUE1 = RGB(176, 226, 255) +LIGHTSKYBLUE2 = RGB(164, 211, 238) +LIGHTSKYBLUE3 = RGB(141, 182, 205) +LIGHTSKYBLUE4 = RGB(96, 123, 139) +LIGHTSLATEBLUE = RGB(132, 112, 255) +LIGHTSLATEGRAY = RGB(119, 136, 153) +LIGHTSTEELBLUE = RGB(176, 196, 222) +LIGHTSTEELBLUE1 = RGB(202, 225, 255) +LIGHTSTEELBLUE2 = RGB(188, 210, 238) +LIGHTSTEELBLUE3 = RGB(162, 181, 205) +LIGHTSTEELBLUE4 = RGB(110, 123, 139) +LIGHTYELLOW1 = RGB(255, 255, 224) +LIGHTYELLOW2 = RGB(238, 238, 209) +LIGHTYELLOW3 = RGB(205, 205, 180) +LIGHTYELLOW4 = RGB(139, 139, 122) +LIMEGREEN = RGB(50, 205, 50) +LINEN = RGB(250, 240, 230) +MAGENTA = RGB(255, 0, 255) +MAGENTA2 = RGB(238, 0, 238) +MAGENTA3 = RGB(205, 0, 205) +MAGENTA4 = RGB(139, 0, 139) +MANGANESEBLUE = RGB(3, 168, 158) +MAROON = RGB(128, 0, 0) +MAROON1 = RGB(255, 52, 179) +MAROON2 = RGB(238, 48, 167) +MAROON3 = RGB(205, 41, 144) +MAROON4 = RGB(139, 28, 98) +MEDIUMORCHID = RGB(186, 85, 211) +MEDIUMORCHID1 = RGB(224, 102, 255) +MEDIUMORCHID2 = RGB(209, 95, 238) +MEDIUMORCHID3 = RGB(180, 82, 205) +MEDIUMORCHID4 = RGB(122, 55, 139) +MEDIUMPURPLE = RGB(147, 112, 219) +MEDIUMPURPLE1 = RGB(171, 130, 255) +MEDIUMPURPLE2 = RGB(159, 121, 238) +MEDIUMPURPLE3 = RGB(137, 104, 205) +MEDIUMPURPLE4 = RGB(93, 71, 139) +MEDIUMSEAGREEN = RGB(60, 179, 113) +MEDIUMSLATEBLUE = RGB(123, 104, 238) +MEDIUMSPRINGGREEN = RGB(0, 250, 154) +MEDIUMTURQUOISE = RGB(72, 209, 204) +MEDIUMVIOLETRED = RGB(199, 21, 133) +MELON = RGB(227, 168, 105) +MIDNIGHTBLUE = RGB(25, 25, 112) +MINT = RGB(189, 252, 201) +MINTCREAM = RGB(245, 255, 250) +MISTYROSE1 = RGB(255, 228, 225) +MISTYROSE2 = RGB(238, 213, 210) +MISTYROSE3 = RGB(205, 183, 181) +MISTYROSE4 = RGB(139, 125, 123) +MOCCASIN = RGB(255, 228, 181) +NAVAJOWHITE1 = RGB(255, 222, 173) +NAVAJOWHITE2 = RGB(238, 207, 161) +NAVAJOWHITE3 = RGB(205, 179, 139) +NAVAJOWHITE4 = RGB(139, 121, 94) +NAVY = RGB(0, 0, 128) +OLDLACE = RGB(253, 245, 230) +OLIVE = RGB(128, 128, 0) +OLIVEDRAB = RGB(107, 142, 35) +OLIVEDRAB1 = RGB(192, 255, 62) +OLIVEDRAB2 = RGB(179, 238, 58) +OLIVEDRAB3 = RGB(154, 205, 50) +OLIVEDRAB4 = RGB(105, 139, 34) +ORANGE = RGB(255, 128, 0) +ORANGE1 = RGB(255, 165, 0) +ORANGE2 = RGB(238, 154, 0) +ORANGE3 = RGB(205, 133, 0) +ORANGE4 = RGB(139, 90, 0) +ORANGERED1 = RGB(255, 69, 0) +ORANGERED2 = RGB(238, 64, 0) +ORANGERED3 = RGB(205, 55, 0) +ORANGERED4 = RGB(139, 37, 0) +ORCHID = RGB(218, 112, 214) +ORCHID1 = RGB(255, 131, 250) +ORCHID2 = RGB(238, 122, 233) +ORCHID3 = RGB(205, 105, 201) +ORCHID4 = RGB(139, 71, 137) +PALEGOLDENROD = RGB(238, 232, 170) +PALEGREEN = RGB(152, 251, 152) +PALEGREEN1 = RGB(154, 255, 154) +PALEGREEN2 = RGB(144, 238, 144) +PALEGREEN3 = RGB(124, 205, 124) +PALEGREEN4 = RGB(84, 139, 84) +PALETURQUOISE1 = RGB(187, 255, 255) +PALETURQUOISE2 = RGB(174, 238, 238) +PALETURQUOISE3 = RGB(150, 205, 205) +PALETURQUOISE4 = RGB(102, 139, 139) +PALEVIOLETRED = RGB(219, 112, 147) +PALEVIOLETRED1 = RGB(255, 130, 171) +PALEVIOLETRED2 = RGB(238, 121, 159) +PALEVIOLETRED3 = RGB(205, 104, 137) +PALEVIOLETRED4 = RGB(139, 71, 93) +PAPAYAWHIP = RGB(255, 239, 213) +PEACHPUFF1 = RGB(255, 218, 185) +PEACHPUFF2 = RGB(238, 203, 173) +PEACHPUFF3 = RGB(205, 175, 149) +PEACHPUFF4 = RGB(139, 119, 101) +PEACOCK = RGB(51, 161, 201) +PINK = RGB(255, 192, 203) +PINK1 = RGB(255, 181, 197) +PINK2 = RGB(238, 169, 184) +PINK3 = RGB(205, 145, 158) +PINK4 = RGB(139, 99, 108) +PLUM = RGB(221, 160, 221) +PLUM1 = RGB(255, 187, 255) +PLUM2 = RGB(238, 174, 238) +PLUM3 = RGB(205, 150, 205) +PLUM4 = RGB(139, 102, 139) +POWDERBLUE = RGB(176, 224, 230) +PURPLE = RGB(128, 0, 128) +PURPLE1 = RGB(155, 48, 255) +PURPLE2 = RGB(145, 44, 238) +PURPLE3 = RGB(125, 38, 205) +PURPLE4 = RGB(85, 26, 139) +RASPBERRY = RGB(135, 38, 87) +RAWSIENNA = RGB(199, 97, 20) +RED1 = RGB(255, 0, 0) +RED2 = RGB(238, 0, 0) +RED3 = RGB(205, 0, 0) +RED4 = RGB(139, 0, 0) +ROSYBROWN = RGB(188, 143, 143) +ROSYBROWN1 = RGB(255, 193, 193) +ROSYBROWN2 = RGB(238, 180, 180) +ROSYBROWN3 = RGB(205, 155, 155) +ROSYBROWN4 = RGB(139, 105, 105) +ROYALBLUE = RGB(65, 105, 225) +ROYALBLUE1 = RGB(72, 118, 255) +ROYALBLUE2 = RGB(67, 110, 238) +ROYALBLUE3 = RGB(58, 95, 205) +ROYALBLUE4 = RGB(39, 64, 139) +SALMON = RGB(250, 128, 114) +SALMON1 = RGB(255, 140, 105) +SALMON2 = RGB(238, 130, 98) +SALMON3 = RGB(205, 112, 84) +SALMON4 = RGB(139, 76, 57) +SANDYBROWN = RGB(244, 164, 96) +SAPGREEN = RGB(48, 128, 20) +SEAGREEN1 = RGB(84, 255, 159) +SEAGREEN2 = RGB(78, 238, 148) +SEAGREEN3 = RGB(67, 205, 128) +SEAGREEN4 = RGB(46, 139, 87) +SEASHELL1 = RGB(255, 245, 238) +SEASHELL2 = RGB(238, 229, 222) +SEASHELL3 = RGB(205, 197, 191) +SEASHELL4 = RGB(139, 134, 130) +SEPIA = RGB(94, 38, 18) +SGIBEET = RGB(142, 56, 142) +SGIBRIGHTGRAY = RGB(197, 193, 170) +SGICHARTREUSE = RGB(113, 198, 113) +SGIDARKGRAY = RGB(85, 85, 85) +SGIGRAY12 = RGB(30, 30, 30) +SGIGRAY16 = RGB(40, 40, 40) +SGIGRAY32 = RGB(81, 81, 81) +SGIGRAY36 = RGB(91, 91, 91) +SGIGRAY52 = RGB(132, 132, 132) +SGIGRAY56 = RGB(142, 142, 142) +SGIGRAY72 = RGB(183, 183, 183) +SGIGRAY76 = RGB(193, 193, 193) +SGIGRAY92 = RGB(234, 234, 234) +SGIGRAY96 = RGB(244, 244, 244) +SGILIGHTBLUE = RGB(125, 158, 192) +SGILIGHTGRAY = RGB(170, 170, 170) +SGIOLIVEDRAB = RGB(142, 142, 56) +SGISALMON = RGB(198, 113, 113) +SGISLATEBLUE = RGB(113, 113, 198) +SGITEAL = RGB(56, 142, 142) +SIENNA = RGB(160, 82, 45) +SIENNA1 = RGB(255, 130, 71) +SIENNA2 = RGB(238, 121, 66) +SIENNA3 = RGB(205, 104, 57) +SIENNA4 = RGB(139, 71, 38) +SILVER = RGB(192, 192, 192) +SKYBLUE = RGB(135, 206, 235) +SKYBLUE1 = RGB(135, 206, 255) +SKYBLUE2 = RGB(126, 192, 238) +SKYBLUE3 = RGB(108, 166, 205) +SKYBLUE4 = RGB(74, 112, 139) +SLATEBLUE = RGB(106, 90, 205) +SLATEBLUE1 = RGB(131, 111, 255) +SLATEBLUE2 = RGB(122, 103, 238) +SLATEBLUE3 = RGB(105, 89, 205) +SLATEBLUE4 = RGB(71, 60, 139) +SLATEGRAY = RGB(112, 128, 144) +SLATEGRAY1 = RGB(198, 226, 255) +SLATEGRAY2 = RGB(185, 211, 238) +SLATEGRAY3 = RGB(159, 182, 205) +SLATEGRAY4 = RGB(108, 123, 139) +SNOW1 = RGB(255, 250, 250) +SNOW2 = RGB(238, 233, 233) +SNOW3 = RGB(205, 201, 201) +SNOW4 = RGB(139, 137, 137) +SPRINGGREEN = RGB(0, 255, 127) +SPRINGGREEN1 = RGB(0, 238, 118) +SPRINGGREEN2 = RGB(0, 205, 102) +SPRINGGREEN3 = RGB(0, 139, 69) +STEELBLUE = RGB(70, 130, 180) +STEELBLUE1 = RGB(99, 184, 255) +STEELBLUE2 = RGB(92, 172, 238) +STEELBLUE3 = RGB(79, 148, 205) +STEELBLUE4 = RGB(54, 100, 139) +TAN = RGB(210, 180, 140) +TAN1 = RGB(255, 165, 79) +TAN2 = RGB(238, 154, 73) +TAN3 = RGB(205, 133, 63) +TAN4 = RGB(139, 90, 43) +TEAL = RGB(0, 128, 128) +THISTLE = RGB(216, 191, 216) +THISTLE1 = RGB(255, 225, 255) +THISTLE2 = RGB(238, 210, 238) +THISTLE3 = RGB(205, 181, 205) +THISTLE4 = RGB(139, 123, 139) +TOMATO1 = RGB(255, 99, 71) +TOMATO2 = RGB(238, 92, 66) +TOMATO3 = RGB(205, 79, 57) +TOMATO4 = RGB(139, 54, 38) +TURQUOISE = RGB(64, 224, 208) +TURQUOISE1 = RGB(0, 245, 255) +TURQUOISE2 = RGB(0, 229, 238) +TURQUOISE3 = RGB(0, 197, 205) +TURQUOISE4 = RGB(0, 134, 139) +TURQUOISEBLUE = RGB(0, 199, 140) +VIOLET = RGB(238, 130, 238) +VIOLETRED = RGB(208, 32, 144) +VIOLETRED1 = RGB(255, 62, 150) +VIOLETRED2 = RGB(238, 58, 140) +VIOLETRED3 = RGB(205, 50, 120) +VIOLETRED4 = RGB(139, 34, 82) +WARMGREY = RGB(128, 128, 105) +WHEAT = RGB(245, 222, 179) +WHEAT1 = RGB(255, 231, 186) +WHEAT2 = RGB(238, 216, 174) +WHEAT3 = RGB(205, 186, 150) +WHEAT4 = RGB(139, 126, 102) +WHITE = RGB(255, 255, 255) +WHITESMOKE = RGB(245, 245, 245) +WHITESMOKE = RGB(245, 245, 245) +YELLOW1 = RGB(255, 255, 0) +YELLOW2 = RGB(238, 238, 0) +YELLOW3 = RGB(205, 205, 0) +YELLOW4 = RGB(139, 139, 0) + +#Add colors to colors dictionary +colors['aliceblue'] = ALICEBLUE +colors['antiquewhite'] = ANTIQUEWHITE +colors['antiquewhite1'] = ANTIQUEWHITE1 +colors['antiquewhite2'] = ANTIQUEWHITE2 +colors['antiquewhite3'] = ANTIQUEWHITE3 +colors['antiquewhite4'] = ANTIQUEWHITE4 +colors['aqua'] = AQUA +colors['aquamarine1'] = AQUAMARINE1 +colors['aquamarine2'] = AQUAMARINE2 +colors['aquamarine3'] = AQUAMARINE3 +colors['aquamarine4'] = AQUAMARINE4 +colors['azure1'] = AZURE1 +colors['azure2'] = AZURE2 +colors['azure3'] = AZURE3 +colors['azure4'] = AZURE4 +colors['banana'] = BANANA +colors['beige'] = BEIGE +colors['bisque1'] = BISQUE1 +colors['bisque2'] = BISQUE2 +colors['bisque3'] = BISQUE3 +colors['bisque4'] = BISQUE4 +colors['black'] = BLACK +colors['blanchedalmond'] = BLANCHEDALMOND +colors['blue'] = BLUE +colors['blue2'] = BLUE2 +colors['blue3'] = BLUE3 +colors['blue4'] = BLUE4 +colors['blueviolet'] = BLUEVIOLET +colors['brick'] = BRICK +colors['brown'] = BROWN +colors['brown1'] = BROWN1 +colors['brown2'] = BROWN2 +colors['brown3'] = BROWN3 +colors['brown4'] = BROWN4 +colors['burlywood'] = BURLYWOOD +colors['burlywood1'] = BURLYWOOD1 +colors['burlywood2'] = BURLYWOOD2 +colors['burlywood3'] = BURLYWOOD3 +colors['burlywood4'] = BURLYWOOD4 +colors['burntsienna'] = BURNTSIENNA +colors['burntumber'] = BURNTUMBER +colors['cadetblue'] = CADETBLUE +colors['cadetblue1'] = CADETBLUE1 +colors['cadetblue2'] = CADETBLUE2 +colors['cadetblue3'] = CADETBLUE3 +colors['cadetblue4'] = CADETBLUE4 +colors['cadmiumorange'] = CADMIUMORANGE +colors['cadmiumyellow'] = CADMIUMYELLOW +colors['carrot'] = CARROT +colors['chartreuse1'] = CHARTREUSE1 +colors['chartreuse2'] = CHARTREUSE2 +colors['chartreuse3'] = CHARTREUSE3 +colors['chartreuse4'] = CHARTREUSE4 +colors['chocolate'] = CHOCOLATE +colors['chocolate1'] = CHOCOLATE1 +colors['chocolate2'] = CHOCOLATE2 +colors['chocolate3'] = CHOCOLATE3 +colors['chocolate4'] = CHOCOLATE4 +colors['cobalt'] = COBALT +colors['cobaltgreen'] = COBALTGREEN +colors['coldgrey'] = COLDGREY +colors['coral'] = CORAL +colors['coral1'] = CORAL1 +colors['coral2'] = CORAL2 +colors['coral3'] = CORAL3 +colors['coral4'] = CORAL4 +colors['cornflowerblue'] = CORNFLOWERBLUE +colors['cornsilk1'] = CORNSILK1 +colors['cornsilk2'] = CORNSILK2 +colors['cornsilk3'] = CORNSILK3 +colors['cornsilk4'] = CORNSILK4 +colors['crimson'] = CRIMSON +colors['cyan2'] = CYAN2 +colors['cyan3'] = CYAN3 +colors['cyan4'] = CYAN4 +colors['darkgoldenrod'] = DARKGOLDENROD +colors['darkgoldenrod1'] = DARKGOLDENROD1 +colors['darkgoldenrod2'] = DARKGOLDENROD2 +colors['darkgoldenrod3'] = DARKGOLDENROD3 +colors['darkgoldenrod4'] = DARKGOLDENROD4 +colors['darkgray'] = DARKGRAY +colors['darkgreen'] = DARKGREEN +colors['darkkhaki'] = DARKKHAKI +colors['darkolivegreen'] = DARKOLIVEGREEN +colors['darkolivegreen1'] = DARKOLIVEGREEN1 +colors['darkolivegreen2'] = DARKOLIVEGREEN2 +colors['darkolivegreen3'] = DARKOLIVEGREEN3 +colors['darkolivegreen4'] = DARKOLIVEGREEN4 +colors['darkorange'] = DARKORANGE +colors['darkorange1'] = DARKORANGE1 +colors['darkorange2'] = DARKORANGE2 +colors['darkorange3'] = DARKORANGE3 +colors['darkorange4'] = DARKORANGE4 +colors['darkorchid'] = DARKORCHID +colors['darkorchid1'] = DARKORCHID1 +colors['darkorchid2'] = DARKORCHID2 +colors['darkorchid3'] = DARKORCHID3 +colors['darkorchid4'] = DARKORCHID4 +colors['darksalmon'] = DARKSALMON +colors['darkseagreen'] = DARKSEAGREEN +colors['darkseagreen1'] = DARKSEAGREEN1 +colors['darkseagreen2'] = DARKSEAGREEN2 +colors['darkseagreen3'] = DARKSEAGREEN3 +colors['darkseagreen4'] = DARKSEAGREEN4 +colors['darkslateblue'] = DARKSLATEBLUE +colors['darkslategray'] = DARKSLATEGRAY +colors['darkslategray1'] = DARKSLATEGRAY1 +colors['darkslategray2'] = DARKSLATEGRAY2 +colors['darkslategray3'] = DARKSLATEGRAY3 +colors['darkslategray4'] = DARKSLATEGRAY4 +colors['darkturquoise'] = DARKTURQUOISE +colors['darkviolet'] = DARKVIOLET +colors['deeppink1'] = DEEPPINK1 +colors['deeppink2'] = DEEPPINK2 +colors['deeppink3'] = DEEPPINK3 +colors['deeppink4'] = DEEPPINK4 +colors['deepskyblue1'] = DEEPSKYBLUE1 +colors['deepskyblue2'] = DEEPSKYBLUE2 +colors['deepskyblue3'] = DEEPSKYBLUE3 +colors['deepskyblue4'] = DEEPSKYBLUE4 +colors['dimgray'] = DIMGRAY +colors['dimgray'] = DIMGRAY +colors['dodgerblue1'] = DODGERBLUE1 +colors['dodgerblue2'] = DODGERBLUE2 +colors['dodgerblue3'] = DODGERBLUE3 +colors['dodgerblue4'] = DODGERBLUE4 +colors['eggshell'] = EGGSHELL +colors['emeraldgreen'] = EMERALDGREEN +colors['firebrick'] = FIREBRICK +colors['firebrick1'] = FIREBRICK1 +colors['firebrick2'] = FIREBRICK2 +colors['firebrick3'] = FIREBRICK3 +colors['firebrick4'] = FIREBRICK4 +colors['flesh'] = FLESH +colors['floralwhite'] = FLORALWHITE +colors['forestgreen'] = FORESTGREEN +colors['gainsboro'] = GAINSBORO +colors['ghostwhite'] = GHOSTWHITE +colors['gold1'] = GOLD1 +colors['gold2'] = GOLD2 +colors['gold3'] = GOLD3 +colors['gold4'] = GOLD4 +colors['goldenrod'] = GOLDENROD +colors['goldenrod1'] = GOLDENROD1 +colors['goldenrod2'] = GOLDENROD2 +colors['goldenrod3'] = GOLDENROD3 +colors['goldenrod4'] = GOLDENROD4 +colors['gray'] = GRAY +colors['gray1'] = GRAY1 +colors['gray10'] = GRAY10 +colors['gray11'] = GRAY11 +colors['gray12'] = GRAY12 +colors['gray13'] = GRAY13 +colors['gray14'] = GRAY14 +colors['gray15'] = GRAY15 +colors['gray16'] = GRAY16 +colors['gray17'] = GRAY17 +colors['gray18'] = GRAY18 +colors['gray19'] = GRAY19 +colors['gray2'] = GRAY2 +colors['gray20'] = GRAY20 +colors['gray21'] = GRAY21 +colors['gray22'] = GRAY22 +colors['gray23'] = GRAY23 +colors['gray24'] = GRAY24 +colors['gray25'] = GRAY25 +colors['gray26'] = GRAY26 +colors['gray27'] = GRAY27 +colors['gray28'] = GRAY28 +colors['gray29'] = GRAY29 +colors['gray3'] = GRAY3 +colors['gray30'] = GRAY30 +colors['gray31'] = GRAY31 +colors['gray32'] = GRAY32 +colors['gray33'] = GRAY33 +colors['gray34'] = GRAY34 +colors['gray35'] = GRAY35 +colors['gray36'] = GRAY36 +colors['gray37'] = GRAY37 +colors['gray38'] = GRAY38 +colors['gray39'] = GRAY39 +colors['gray4'] = GRAY4 +colors['gray40'] = GRAY40 +colors['gray42'] = GRAY42 +colors['gray43'] = GRAY43 +colors['gray44'] = GRAY44 +colors['gray45'] = GRAY45 +colors['gray46'] = GRAY46 +colors['gray47'] = GRAY47 +colors['gray48'] = GRAY48 +colors['gray49'] = GRAY49 +colors['gray5'] = GRAY5 +colors['gray50'] = GRAY50 +colors['gray51'] = GRAY51 +colors['gray52'] = GRAY52 +colors['gray53'] = GRAY53 +colors['gray54'] = GRAY54 +colors['gray55'] = GRAY55 +colors['gray56'] = GRAY56 +colors['gray57'] = GRAY57 +colors['gray58'] = GRAY58 +colors['gray59'] = GRAY59 +colors['gray6'] = GRAY6 +colors['gray60'] = GRAY60 +colors['gray61'] = GRAY61 +colors['gray62'] = GRAY62 +colors['gray63'] = GRAY63 +colors['gray64'] = GRAY64 +colors['gray65'] = GRAY65 +colors['gray66'] = GRAY66 +colors['gray67'] = GRAY67 +colors['gray68'] = GRAY68 +colors['gray69'] = GRAY69 +colors['gray7'] = GRAY7 +colors['gray70'] = GRAY70 +colors['gray71'] = GRAY71 +colors['gray72'] = GRAY72 +colors['gray73'] = GRAY73 +colors['gray74'] = GRAY74 +colors['gray75'] = GRAY75 +colors['gray76'] = GRAY76 +colors['gray77'] = GRAY77 +colors['gray78'] = GRAY78 +colors['gray79'] = GRAY79 +colors['gray8'] = GRAY8 +colors['gray80'] = GRAY80 +colors['gray81'] = GRAY81 +colors['gray82'] = GRAY82 +colors['gray83'] = GRAY83 +colors['gray84'] = GRAY84 +colors['gray85'] = GRAY85 +colors['gray86'] = GRAY86 +colors['gray87'] = GRAY87 +colors['gray88'] = GRAY88 +colors['gray89'] = GRAY89 +colors['gray9'] = GRAY9 +colors['gray90'] = GRAY90 +colors['gray91'] = GRAY91 +colors['gray92'] = GRAY92 +colors['gray93'] = GRAY93 +colors['gray94'] = GRAY94 +colors['gray95'] = GRAY95 +colors['gray97'] = GRAY97 +colors['gray98'] = GRAY98 +colors['gray99'] = GRAY99 +colors['green'] = GREEN +colors['green1'] = GREEN1 +colors['green2'] = GREEN2 +colors['green3'] = GREEN3 +colors['green4'] = GREEN4 +colors['greenyellow'] = GREENYELLOW +colors['honeydew1'] = HONEYDEW1 +colors['honeydew2'] = HONEYDEW2 +colors['honeydew3'] = HONEYDEW3 +colors['honeydew4'] = HONEYDEW4 +colors['hotpink'] = HOTPINK +colors['hotpink1'] = HOTPINK1 +colors['hotpink2'] = HOTPINK2 +colors['hotpink3'] = HOTPINK3 +colors['hotpink4'] = HOTPINK4 +colors['indianred'] = INDIANRED +colors['indianred'] = INDIANRED +colors['indianred1'] = INDIANRED1 +colors['indianred2'] = INDIANRED2 +colors['indianred3'] = INDIANRED3 +colors['indianred4'] = INDIANRED4 +colors['indigo'] = INDIGO +colors['ivory1'] = IVORY1 +colors['ivory2'] = IVORY2 +colors['ivory3'] = IVORY3 +colors['ivory4'] = IVORY4 +colors['ivoryblack'] = IVORYBLACK +colors['khaki'] = KHAKI +colors['khaki1'] = KHAKI1 +colors['khaki2'] = KHAKI2 +colors['khaki3'] = KHAKI3 +colors['khaki4'] = KHAKI4 +colors['lavender'] = LAVENDER +colors['lavenderblush1'] = LAVENDERBLUSH1 +colors['lavenderblush2'] = LAVENDERBLUSH2 +colors['lavenderblush3'] = LAVENDERBLUSH3 +colors['lavenderblush4'] = LAVENDERBLUSH4 +colors['lawngreen'] = LAWNGREEN +colors['lemonchiffon1'] = LEMONCHIFFON1 +colors['lemonchiffon2'] = LEMONCHIFFON2 +colors['lemonchiffon3'] = LEMONCHIFFON3 +colors['lemonchiffon4'] = LEMONCHIFFON4 +colors['lightblue'] = LIGHTBLUE +colors['lightblue1'] = LIGHTBLUE1 +colors['lightblue2'] = LIGHTBLUE2 +colors['lightblue3'] = LIGHTBLUE3 +colors['lightblue4'] = LIGHTBLUE4 +colors['lightcoral'] = LIGHTCORAL +colors['lightcyan1'] = LIGHTCYAN1 +colors['lightcyan2'] = LIGHTCYAN2 +colors['lightcyan3'] = LIGHTCYAN3 +colors['lightcyan4'] = LIGHTCYAN4 +colors['lightgoldenrod1'] = LIGHTGOLDENROD1 +colors['lightgoldenrod2'] = LIGHTGOLDENROD2 +colors['lightgoldenrod3'] = LIGHTGOLDENROD3 +colors['lightgoldenrod4'] = LIGHTGOLDENROD4 +colors['lightgoldenrodyellow'] = LIGHTGOLDENRODYELLOW +colors['lightgrey'] = LIGHTGREY +colors['lightpink'] = LIGHTPINK +colors['lightpink1'] = LIGHTPINK1 +colors['lightpink2'] = LIGHTPINK2 +colors['lightpink3'] = LIGHTPINK3 +colors['lightpink4'] = LIGHTPINK4 +colors['lightsalmon1'] = LIGHTSALMON1 +colors['lightsalmon2'] = LIGHTSALMON2 +colors['lightsalmon3'] = LIGHTSALMON3 +colors['lightsalmon4'] = LIGHTSALMON4 +colors['lightseagreen'] = LIGHTSEAGREEN +colors['lightskyblue'] = LIGHTSKYBLUE +colors['lightskyblue1'] = LIGHTSKYBLUE1 +colors['lightskyblue2'] = LIGHTSKYBLUE2 +colors['lightskyblue3'] = LIGHTSKYBLUE3 +colors['lightskyblue4'] = LIGHTSKYBLUE4 +colors['lightslateblue'] = LIGHTSLATEBLUE +colors['lightslategray'] = LIGHTSLATEGRAY +colors['lightsteelblue'] = LIGHTSTEELBLUE +colors['lightsteelblue1'] = LIGHTSTEELBLUE1 +colors['lightsteelblue2'] = LIGHTSTEELBLUE2 +colors['lightsteelblue3'] = LIGHTSTEELBLUE3 +colors['lightsteelblue4'] = LIGHTSTEELBLUE4 +colors['lightyellow1'] = LIGHTYELLOW1 +colors['lightyellow2'] = LIGHTYELLOW2 +colors['lightyellow3'] = LIGHTYELLOW3 +colors['lightyellow4'] = LIGHTYELLOW4 +colors['limegreen'] = LIMEGREEN +colors['linen'] = LINEN +colors['magenta'] = MAGENTA +colors['magenta2'] = MAGENTA2 +colors['magenta3'] = MAGENTA3 +colors['magenta4'] = MAGENTA4 +colors['manganeseblue'] = MANGANESEBLUE +colors['maroon'] = MAROON +colors['maroon1'] = MAROON1 +colors['maroon2'] = MAROON2 +colors['maroon3'] = MAROON3 +colors['maroon4'] = MAROON4 +colors['mediumorchid'] = MEDIUMORCHID +colors['mediumorchid1'] = MEDIUMORCHID1 +colors['mediumorchid2'] = MEDIUMORCHID2 +colors['mediumorchid3'] = MEDIUMORCHID3 +colors['mediumorchid4'] = MEDIUMORCHID4 +colors['mediumpurple'] = MEDIUMPURPLE +colors['mediumpurple1'] = MEDIUMPURPLE1 +colors['mediumpurple2'] = MEDIUMPURPLE2 +colors['mediumpurple3'] = MEDIUMPURPLE3 +colors['mediumpurple4'] = MEDIUMPURPLE4 +colors['mediumseagreen'] = MEDIUMSEAGREEN +colors['mediumslateblue'] = MEDIUMSLATEBLUE +colors['mediumspringgreen'] = MEDIUMSPRINGGREEN +colors['mediumturquoise'] = MEDIUMTURQUOISE +colors['mediumvioletred'] = MEDIUMVIOLETRED +colors['melon'] = MELON +colors['midnightblue'] = MIDNIGHTBLUE +colors['mint'] = MINT +colors['mintcream'] = MINTCREAM +colors['mistyrose1'] = MISTYROSE1 +colors['mistyrose2'] = MISTYROSE2 +colors['mistyrose3'] = MISTYROSE3 +colors['mistyrose4'] = MISTYROSE4 +colors['moccasin'] = MOCCASIN +colors['navajowhite1'] = NAVAJOWHITE1 +colors['navajowhite2'] = NAVAJOWHITE2 +colors['navajowhite3'] = NAVAJOWHITE3 +colors['navajowhite4'] = NAVAJOWHITE4 +colors['navy'] = NAVY +colors['oldlace'] = OLDLACE +colors['olive'] = OLIVE +colors['olivedrab'] = OLIVEDRAB +colors['olivedrab1'] = OLIVEDRAB1 +colors['olivedrab2'] = OLIVEDRAB2 +colors['olivedrab3'] = OLIVEDRAB3 +colors['olivedrab4'] = OLIVEDRAB4 +colors['orange'] = ORANGE +colors['orange1'] = ORANGE1 +colors['orange2'] = ORANGE2 +colors['orange3'] = ORANGE3 +colors['orange4'] = ORANGE4 +colors['orangered1'] = ORANGERED1 +colors['orangered2'] = ORANGERED2 +colors['orangered3'] = ORANGERED3 +colors['orangered4'] = ORANGERED4 +colors['orchid'] = ORCHID +colors['orchid1'] = ORCHID1 +colors['orchid2'] = ORCHID2 +colors['orchid3'] = ORCHID3 +colors['orchid4'] = ORCHID4 +colors['palegoldenrod'] = PALEGOLDENROD +colors['palegreen'] = PALEGREEN +colors['palegreen1'] = PALEGREEN1 +colors['palegreen2'] = PALEGREEN2 +colors['palegreen3'] = PALEGREEN3 +colors['palegreen4'] = PALEGREEN4 +colors['paleturquoise1'] = PALETURQUOISE1 +colors['paleturquoise2'] = PALETURQUOISE2 +colors['paleturquoise3'] = PALETURQUOISE3 +colors['paleturquoise4'] = PALETURQUOISE4 +colors['palevioletred'] = PALEVIOLETRED +colors['palevioletred1'] = PALEVIOLETRED1 +colors['palevioletred2'] = PALEVIOLETRED2 +colors['palevioletred3'] = PALEVIOLETRED3 +colors['palevioletred4'] = PALEVIOLETRED4 +colors['papayawhip'] = PAPAYAWHIP +colors['peachpuff1'] = PEACHPUFF1 +colors['peachpuff2'] = PEACHPUFF2 +colors['peachpuff3'] = PEACHPUFF3 +colors['peachpuff4'] = PEACHPUFF4 +colors['peacock'] = PEACOCK +colors['pink'] = PINK +colors['pink1'] = PINK1 +colors['pink2'] = PINK2 +colors['pink3'] = PINK3 +colors['pink4'] = PINK4 +colors['plum'] = PLUM +colors['plum1'] = PLUM1 +colors['plum2'] = PLUM2 +colors['plum3'] = PLUM3 +colors['plum4'] = PLUM4 +colors['powderblue'] = POWDERBLUE +colors['purple'] = PURPLE +colors['purple1'] = PURPLE1 +colors['purple2'] = PURPLE2 +colors['purple3'] = PURPLE3 +colors['purple4'] = PURPLE4 +colors['raspberry'] = RASPBERRY +colors['rawsienna'] = RAWSIENNA +colors['red1'] = RED1 +colors['red2'] = RED2 +colors['red3'] = RED3 +colors['red4'] = RED4 +colors['rosybrown'] = ROSYBROWN +colors['rosybrown1'] = ROSYBROWN1 +colors['rosybrown2'] = ROSYBROWN2 +colors['rosybrown3'] = ROSYBROWN3 +colors['rosybrown4'] = ROSYBROWN4 +colors['royalblue'] = ROYALBLUE +colors['royalblue1'] = ROYALBLUE1 +colors['royalblue2'] = ROYALBLUE2 +colors['royalblue3'] = ROYALBLUE3 +colors['royalblue4'] = ROYALBLUE4 +colors['salmon'] = SALMON +colors['salmon1'] = SALMON1 +colors['salmon2'] = SALMON2 +colors['salmon3'] = SALMON3 +colors['salmon4'] = SALMON4 +colors['sandybrown'] = SANDYBROWN +colors['sapgreen'] = SAPGREEN +colors['seagreen1'] = SEAGREEN1 +colors['seagreen2'] = SEAGREEN2 +colors['seagreen3'] = SEAGREEN3 +colors['seagreen4'] = SEAGREEN4 +colors['seashell1'] = SEASHELL1 +colors['seashell2'] = SEASHELL2 +colors['seashell3'] = SEASHELL3 +colors['seashell4'] = SEASHELL4 +colors['sepia'] = SEPIA +colors['sgibeet'] = SGIBEET +colors['sgibrightgray'] = SGIBRIGHTGRAY +colors['sgichartreuse'] = SGICHARTREUSE +colors['sgidarkgray'] = SGIDARKGRAY +colors['sgigray12'] = SGIGRAY12 +colors['sgigray16'] = SGIGRAY16 +colors['sgigray32'] = SGIGRAY32 +colors['sgigray36'] = SGIGRAY36 +colors['sgigray52'] = SGIGRAY52 +colors['sgigray56'] = SGIGRAY56 +colors['sgigray72'] = SGIGRAY72 +colors['sgigray76'] = SGIGRAY76 +colors['sgigray92'] = SGIGRAY92 +colors['sgigray96'] = SGIGRAY96 +colors['sgilightblue'] = SGILIGHTBLUE +colors['sgilightgray'] = SGILIGHTGRAY +colors['sgiolivedrab'] = SGIOLIVEDRAB +colors['sgisalmon'] = SGISALMON +colors['sgislateblue'] = SGISLATEBLUE +colors['sgiteal'] = SGITEAL +colors['sienna'] = SIENNA +colors['sienna1'] = SIENNA1 +colors['sienna2'] = SIENNA2 +colors['sienna3'] = SIENNA3 +colors['sienna4'] = SIENNA4 +colors['silver'] = SILVER +colors['skyblue'] = SKYBLUE +colors['skyblue1'] = SKYBLUE1 +colors['skyblue2'] = SKYBLUE2 +colors['skyblue3'] = SKYBLUE3 +colors['skyblue4'] = SKYBLUE4 +colors['slateblue'] = SLATEBLUE +colors['slateblue1'] = SLATEBLUE1 +colors['slateblue2'] = SLATEBLUE2 +colors['slateblue3'] = SLATEBLUE3 +colors['slateblue4'] = SLATEBLUE4 +colors['slategray'] = SLATEGRAY +colors['slategray1'] = SLATEGRAY1 +colors['slategray2'] = SLATEGRAY2 +colors['slategray3'] = SLATEGRAY3 +colors['slategray4'] = SLATEGRAY4 +colors['snow1'] = SNOW1 +colors['snow2'] = SNOW2 +colors['snow3'] = SNOW3 +colors['snow4'] = SNOW4 +colors['springgreen'] = SPRINGGREEN +colors['springgreen1'] = SPRINGGREEN1 +colors['springgreen2'] = SPRINGGREEN2 +colors['springgreen3'] = SPRINGGREEN3 +colors['steelblue'] = STEELBLUE +colors['steelblue1'] = STEELBLUE1 +colors['steelblue2'] = STEELBLUE2 +colors['steelblue3'] = STEELBLUE3 +colors['steelblue4'] = STEELBLUE4 +colors['tan'] = TAN +colors['tan1'] = TAN1 +colors['tan2'] = TAN2 +colors['tan3'] = TAN3 +colors['tan4'] = TAN4 +colors['teal'] = TEAL +colors['thistle'] = THISTLE +colors['thistle1'] = THISTLE1 +colors['thistle2'] = THISTLE2 +colors['thistle3'] = THISTLE3 +colors['thistle4'] = THISTLE4 +colors['tomato1'] = TOMATO1 +colors['tomato2'] = TOMATO2 +colors['tomato3'] = TOMATO3 +colors['tomato4'] = TOMATO4 +colors['turquoise'] = TURQUOISE +colors['turquoise1'] = TURQUOISE1 +colors['turquoise2'] = TURQUOISE2 +colors['turquoise3'] = TURQUOISE3 +colors['turquoise4'] = TURQUOISE4 +colors['turquoiseblue'] = TURQUOISEBLUE +colors['violet'] = VIOLET +colors['violetred'] = VIOLETRED +colors['violetred1'] = VIOLETRED1 +colors['violetred2'] = VIOLETRED2 +colors['violetred3'] = VIOLETRED3 +colors['violetred4'] = VIOLETRED4 +colors['warmgrey'] = WARMGREY +colors['wheat'] = WHEAT +colors['wheat1'] = WHEAT1 +colors['wheat2'] = WHEAT2 +colors['wheat3'] = WHEAT3 +colors['wheat4'] = WHEAT4 +colors['white'] = WHITE +colors['whitesmoke'] = WHITESMOKE +colors['whitesmoke'] = WHITESMOKE +colors['yellow1'] = YELLOW1 +colors['yellow2'] = YELLOW2 +colors['yellow3'] = YELLOW3 +colors['yellow4'] = YELLOW4 From a0a73c6c55f0866fa573f079ab60da5e7ede848a Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Fri, 12 Oct 2018 09:45:00 -0400 Subject: [PATCH 14/34] Refactor template generation to DRY it and add seaborn template --- plotly/io/_templates.py | 3 +- plotly/package_data/templates/ggplot2.json | 2 +- plotly/package_data/templates/seaborn.json | 1 + templategen/__init__.py | 12 +- templategen/definitions.py | 175 +++++++++++++++++++++ templategen/ggplot2.py | 122 -------------- templategen/utils/__init__.py | 91 +++++++++++ 7 files changed, 277 insertions(+), 129 deletions(-) create mode 100644 plotly/package_data/templates/seaborn.json create mode 100644 templategen/definitions.py delete mode 100644 templategen/ggplot2.py diff --git a/plotly/io/_templates.py b/plotly/io/_templates.py index 52bf3b25af8..cf1a8422f43 100644 --- a/plotly/io/_templates.py +++ b/plotly/io/_templates.py @@ -33,7 +33,8 @@ def __init__(self): self._templates = {} # Initialize built-in templates - default_templates = ['ggplot2'] + default_templates = ['ggplot2', 'seaborn'] + for template_name in default_templates: self._templates[template_name] = Lazy diff --git a/plotly/package_data/templates/ggplot2.json b/plotly/package_data/templates/ggplot2.json index efa2b21e1a7..6ea51d61db0 100644 --- a/plotly/package_data/templates/ggplot2.json +++ b/plotly/package_data/templates/ggplot2.json @@ -1 +1 @@ -{"layout": {"font": {"color": "rgb(77,77,77)"}, "paper_bgcolor": "white", "plot_bgcolor": "rgb(237,237,237)", "polar": {"bgcolor": "rgb(237,237,237)", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "ternary": {"bgcolor": "rgb(237,237,237)", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "colorway": ["#F8766D", "#00BA38", "#619CFF"], "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "black", "line": {"width": 0}, "opacity": 0.3}, "annotationdefaults": {"arrowhead": 0, "arrowwidth": 1}, "geo": {"landcolor": "rgb(237,237,237)", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "choropleth": [{"type": "choropleth", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmap": [{"type": "heatmap", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contour": [{"type": "contour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "surface": [{"type": "surface", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "carpet": [{"aaxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "baxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "rgb(237,237,237)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(217,217,217)"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["#F8766D", "#00BA38", "#619CFF"], "font": {"color": "rgb(51,51,51)"}, "paper_bgcolor": "white", "plot_bgcolor": "rgb(237,237,237)", "polar": {"bgcolor": "rgb(237,237,237)", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "ternary": {"bgcolor": "rgb(237,237,237)", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "black", "line": {"width": 0}, "opacity": 0.3}, "annotationdefaults": {"arrowhead": 0, "arrowwidth": 1}, "geo": {"landcolor": "rgb(237,237,237)", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "choropleth": [{"type": "choropleth", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmap": [{"type": "heatmap", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contour": [{"type": "contour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "surface": [{"type": "surface", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "carpet": [{"aaxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "baxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "rgb(237,237,237)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(217,217,217)"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/seaborn.json b/plotly/package_data/templates/seaborn.json new file mode 100644 index 00000000000..2f24942c0ee --- /dev/null +++ b/plotly/package_data/templates/seaborn.json @@ -0,0 +1 @@ +{"layout": {"colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"bgcolor": "rgb(234,234,242)", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "rgb(234,234,242)", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "geo": {"landcolor": "rgb(234,234,242)", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "contour": [{"type": "contour", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "surface": [{"type": "surface", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/templategen/__init__.py b/templategen/__init__.py index 9ba3ec27953..5d553e2459b 100644 --- a/templategen/__init__.py +++ b/templategen/__init__.py @@ -1,10 +1,12 @@ -from templategen.ggplot2 import generate_ggplot2_template from plotly.utils import PlotlyJSONEncoder import json +from templategen.definitions import builders if __name__ == '__main__': - # ggplot2 - template = generate_ggplot2_template() - with open('plotly/package_data/templates/ggplot2.json', 'w') as f: - plotly_schema = json.dump(template, f, cls=PlotlyJSONEncoder) + for template_name in builders: + template = builders[template_name]() + + with open('plotly/package_data/templates/%s.json' % template_name, + 'w') as f: + plotly_schema = json.dump(template, f, cls=PlotlyJSONEncoder) diff --git a/templategen/definitions.py b/templategen/definitions.py new file mode 100644 index 00000000000..faac49ba631 --- /dev/null +++ b/templategen/definitions.py @@ -0,0 +1,175 @@ +from templategen.utils import initialize_template +from .utils.colors import colors + +# dict of template builder functions +# This way we can loop over definitions in __init__.py +builders = {} + + +def ggplot2(): + # Define colors + # ------------- + # Based on theme_gray from + # https://github.com/tidyverse/ggplot2/blob/master/R/theme-defaults.r + + # Set colorscale + # Colors picked using colorpicker from + # https://ggplot2.tidyverse.org/reference/scale_colour_continuous.html + colorscale = [[0, 'rgb(20,44,66)'], [1, 'rgb(90,179,244)']] + + # Hue cycle for 3 categories + colorway = ['#F8766D', '#00BA38', '#619CFF'] + + # Set colorbar_common + # Note the light inward ticks in + # https://ggplot2.tidyverse.org/reference/scale_colour_continuous.html + colorbar_common = dict( + outlinewidth=0, + tickcolor=colors['gray93'], + ticks='inside', + len=0.2, + ticklen=6) + + # Common axis common properties + axis_common = dict( + showgrid=True, + gridcolor='white', + linecolor='white', + tickcolor=colors['gray20'], + ticks="outside") + + # semi-transparent black and no outline + shape_defaults = dict( + fillcolor='black', + line={'width': 0}, + opacity=0.3) + + # Remove arrow head and make line thinner + annotation_defaults = { + 'arrowhead': 0, + 'arrowwidth': 1} + + template = initialize_template( + paper_clr='white', + font_clr=colors['gray20'], + panel_background_clr=colors['gray93'], + panel_grid_clr='white', + axis_ticks_clr=colors['gray20'], + zerolinecolor_clr='white', + table_cell_clr=colors['gray93'], + table_header_clr=colors['gray85'], + table_line_clr='white', + colorway=colorway, + colorbar_common=colorbar_common, + colorscale=colorscale, + axis_common=axis_common, + annotation_defaults=annotation_defaults, + shape_defaults=shape_defaults + ) + + return template + + +builders['ggplot2'] = ggplot2 + + +def seaborn(): + # Define colors + # ------------- + # Based on theme_gray from + # https://github.com/tidyverse/ggplot2/blob/master/R/theme-defaults.r + + # Set colorscale + # N = len(sns.cm.rocket.colors) + # [[i/(N-1), f'rgb({int(r*255)},{int(g*255)},{int(b*255)})'] + # for i, (r,g,b) in enumerate(sns.cm.rocket.colors) + # if i % 16 == 0 or i == 255] + colorscale = [ + [0.0, 'rgb(2,4,25)'], + [0.06274509803921569, 'rgb(24,15,41)'], + [0.12549019607843137, 'rgb(47,23,57)'], + [0.18823529411764706, 'rgb(71,28,72)'], + [0.25098039215686274, 'rgb(97,30,82)'], + [0.3137254901960784, 'rgb(123,30,89)'], + [0.3764705882352941, 'rgb(150,27,91)'], + [0.4392156862745098, 'rgb(177,22,88)'], + [0.5019607843137255, 'rgb(203,26,79)'], + [0.5647058823529412, 'rgb(223,47,67)'], + [0.6274509803921569, 'rgb(236,76,61)'], + [0.6901960784313725, 'rgb(242,107,73)'], + [0.7529411764705882, 'rgb(244,135,95)'], + [0.8156862745098039, 'rgb(245,162,122)'], + [0.8784313725490196, 'rgb(246,188,153)'], + [0.9411764705882353, 'rgb(247,212,187)'], + [1.0, 'rgb(250,234,220)']] + + # Hue cycle for 3 categories + # + # Created with: + # import seaborn as sns + # sns.set() + # [f'rgb({int(r*255)},{int(g*255)},{int(b*255)})' + # for r, g, b in sns.color_palette()] + colorway = [ + 'rgb(76,114,176)', + 'rgb(221,132,82)', + 'rgb(85,168,104)', + 'rgb(196,78,82)', + 'rgb(129,114,179)', + 'rgb(147,120,96)', + 'rgb(218,139,195)', + 'rgb(140,140,140)', + 'rgb(204,185,116)', + 'rgb(100,181,205)'] + + # Set colorbar_common + # Note the light inward ticks in + # https://ggplot2.tidyverse.org/reference/scale_colour_continuous.html + colorbar_common = dict( + outlinewidth=0, + tickcolor=colors['gray14'], + ticks='outside', + tickwidth=2, + ticklen=8) + + # Common axis common properties + axis_common = dict( + showgrid=True, + gridcolor='white', + linecolor='white', + ticks='') + + # semi-transparent black and no outline + annotation_clr = 'rgb(67,103,167)' + shape_defaults = dict( + fillcolor=annotation_clr, + line={'width': 0}, + opacity=0.5) + + # Remove arrow head and make line thinner + annotation_defaults = { + 'arrowcolor': annotation_clr} + + template = initialize_template( + paper_clr='white', + font_clr=colors['gray14'], + panel_background_clr='rgb(234,234,242)', + panel_grid_clr='white', + axis_ticks_clr=colors['gray14'], + zerolinecolor_clr='white', + table_cell_clr='rgb(231,231,240)', + table_header_clr='rgb(183,183,191)', + table_line_clr='white', + colorway=colorway, + colorbar_common=colorbar_common, + colorscale=colorscale, + axis_common=axis_common, + annotation_defaults=annotation_defaults, + shape_defaults=shape_defaults + ) + + # Set table header font color to white + return template + + +builders['seaborn'] = seaborn diff --git a/templategen/ggplot2.py b/templategen/ggplot2.py deleted file mode 100644 index db00e531449..00000000000 --- a/templategen/ggplot2.py +++ /dev/null @@ -1,122 +0,0 @@ -import plotly.graph_objs as go -from templategen.utils import set_all_colorscales, set_all_colorbars - -from .utils.colors import colors - - -def generate_ggplot2_template(): - # Initialize template - # ------------------- - template = go.layout.Template() - - # Define colors - # ------------- - # Based on theme_gray from - # https://github.com/tidyverse/ggplot2/blob/master/R/theme-defaults.r - - axis_ticks_clr = colors['gray20'] - axis_text_clr = colors['gray30'] - panel_background_clr = colors['gray93'] - panel_grid_clr = 'white' - zerolinecolor = 'white' - plot_background_clr = 'white' - paper_clr = "white" - strip_clr = colors['gray85'] - - # Set global font color - template.layout.font.color = axis_text_clr - - # Set background colors - template.layout.paper_bgcolor = paper_clr - template.layout.plot_bgcolor = panel_background_clr - template.layout.polar.bgcolor = panel_background_clr - template.layout.ternary.bgcolor = panel_background_clr - - # Hue cycle for 3 categories - template.layout.colorway = ['#F8766D', '#00BA38', '#619CFF'] - - # Set colorscale - # Colors picked using colorpicker from - # https://ggplot2.tidyverse.org/reference/scale_colour_continuous.html - colorscale = [[0, 'rgb(20,44,66)'], [1, 'rgb(90,179,244)']] - - set_all_colorscales(template, colorscale) - - # Set colorbar - # Note the light inward ticks in - # https://ggplot2.tidyverse.org/reference/scale_colour_continuous.html - colorbar = dict(outlinewidth=0, - tickcolor=panel_background_clr, - ticks='inside', - len=0.2, - ticklen=6) - - set_all_colorbars(template, colorbar) - - # Common axis properties - axis = dict(showgrid=True, - gridcolor=panel_grid_clr, - linecolor=panel_grid_clr, - tickcolor=axis_ticks_clr, - ticks="outside") - - cartesian_axis = dict(axis, zerolinecolor=zerolinecolor) - - # Cartesian - template.layout.xaxis = cartesian_axis - template.layout.yaxis = cartesian_axis - - # 3D - axis_3d = dict(cartesian_axis, backgroundcolor=panel_background_clr, - showbackground=True) - template.layout.scene.xaxis = axis_3d - template.layout.scene.yaxis = axis_3d - template.layout.scene.zaxis = axis_3d - - # Ternary - template.layout.ternary.aaxis = axis - template.layout.ternary.baxis = axis - template.layout.ternary.caxis = axis - - # Polar - template.layout.polar.angularaxis = axis - template.layout.polar.radialaxis = axis - - # Carpet - carpet_axis = dict( - gridcolor=panel_grid_clr, - linecolor=panel_grid_clr, - startlinecolor=axis_ticks_clr, - endlinecolor=axis_ticks_clr, - minorgridcolor=panel_grid_clr) - - template.data.carpet = [{ - 'aaxis': carpet_axis, - 'baxis': carpet_axis}] - - # Shape defaults - # semi-transparent black and no outline - template.layout.shapedefaults = dict(fillcolor='black', - line={'width': 0}, - opacity=0.3) - - # Annotation defaults - # Remove arrow head and make line thinner - template.layout.annotationdefaults.arrowhead = 0 - template.layout.annotationdefaults.arrowwidth = 1 - - # Geo - template.layout.geo.landcolor = panel_background_clr - template.layout.geo.subunitcolor = 'white' - template.layout.geo.showland = True - template.layout.geo.showlakes = True - template.layout.geo.lakecolor = 'white' - - # Table - template.data.table = [{'header': {'fill': {'color': strip_clr}, - 'line': {'color': panel_grid_clr}}, - 'cells': {'fill': {'color': panel_background_clr}, - 'line': {'color': panel_grid_clr}}}] - - return template - diff --git a/templategen/utils/__init__.py b/templategen/utils/__init__.py index 921f951b8f6..28a23d76a03 100644 --- a/templategen/utils/__init__.py +++ b/templategen/utils/__init__.py @@ -1,3 +1,5 @@ +from plotly import graph_objs as go + colorscale_parent_paths = [ ('histogram2dcontour',), ('choropleth',), @@ -48,3 +50,92 @@ def set_all_colorbars(template, colorbar): if 'colorbar' in parent: parent.colorbar = colorbar + + +def initialize_template(annotation_defaults, + axis_common, + axis_ticks_clr, + colorbar_common, + colorscale, + colorway, + font_clr, + panel_background_clr, + panel_grid_clr, + paper_clr, + shape_defaults, + table_cell_clr, + table_header_clr, + table_line_clr, + zerolinecolor_clr): + + # Initialize template + # ------------------- + template = go.layout.Template() + + # trace cycle color + template.layout.colorway = colorway + + # Set global font color + template.layout.font.color = font_clr + + # Set background colors + template.layout.paper_bgcolor = paper_clr + template.layout.plot_bgcolor = panel_background_clr + template.layout.polar.bgcolor = panel_background_clr + template.layout.ternary.bgcolor = panel_background_clr + set_all_colorscales(template, colorscale) + set_all_colorbars(template, colorbar_common) + cartesian_axis = dict(axis_common, zerolinecolor=zerolinecolor_clr) + + # Cartesian + template.layout.xaxis = cartesian_axis + template.layout.yaxis = cartesian_axis + + # 3D + axis_3d = dict(cartesian_axis) + if panel_background_clr: + axis_3d['backgroundcolor'] = panel_background_clr + axis_3d['showbackground'] = True + template.layout.scene.xaxis = axis_3d + template.layout.scene.yaxis = axis_3d + template.layout.scene.zaxis = axis_3d + + # Ternary + template.layout.ternary.aaxis = axis_common + template.layout.ternary.baxis = axis_common + template.layout.ternary.caxis = axis_common + + # Polar + template.layout.polar.angularaxis = axis_common + template.layout.polar.radialaxis = axis_common + + # Carpet + carpet_axis = dict( + gridcolor=panel_grid_clr, + linecolor=panel_grid_clr, + startlinecolor=axis_ticks_clr, + endlinecolor=axis_ticks_clr, + minorgridcolor=panel_grid_clr) + template.data.carpet = [{ + 'aaxis': carpet_axis, + 'baxis': carpet_axis}] + + # Shape defaults + template.layout.shapedefaults = shape_defaults + + # Annotation defaults + template.layout.annotationdefaults = annotation_defaults + + # Geo + template.layout.geo.landcolor = panel_background_clr + template.layout.geo.subunitcolor = panel_grid_clr + template.layout.geo.showland = True + template.layout.geo.showlakes = True + template.layout.geo.lakecolor = paper_clr + + # Table + template.data.table = [{'header': {'fill': {'color': table_header_clr}, + 'line': {'color': table_line_clr},}, + 'cells': {'fill': {'color': table_cell_clr}, + 'line': {'color': table_line_clr}}}] + return template \ No newline at end of file From 27690b989362428fe7e7e64113034f3af8825e89 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sat, 13 Oct 2018 14:19:53 -0400 Subject: [PATCH 15/34] Added initial prototype plotly dark / light themes --- plotly/io/_templates.py | 4 +- plotly/package_data/templates/ggplot2.json | 2 +- .../package_data/templates/plotly_dark.json | 1 + .../package_data/templates/plotly_dark2.json | 1 + .../package_data/templates/plotly_light.json | 1 + .../package_data/templates/plotly_light2.json | 1 + plotly/package_data/templates/seaborn.json | 2 +- templategen/definitions.py | 377 +++++++++++++++++- templategen/utils/__init__.py | 1 + 9 files changed, 384 insertions(+), 6 deletions(-) create mode 100644 plotly/package_data/templates/plotly_dark.json create mode 100644 plotly/package_data/templates/plotly_dark2.json create mode 100644 plotly/package_data/templates/plotly_light.json create mode 100644 plotly/package_data/templates/plotly_light2.json diff --git a/plotly/io/_templates.py b/plotly/io/_templates.py index cf1a8422f43..5015ab67d80 100644 --- a/plotly/io/_templates.py +++ b/plotly/io/_templates.py @@ -33,7 +33,9 @@ def __init__(self): self._templates = {} # Initialize built-in templates - default_templates = ['ggplot2', 'seaborn'] + default_templates = ['ggplot2', 'seaborn', + 'plotly_light', 'plotly_light2', + 'plotly_dark', 'plotly_dark2'] for template_name in default_templates: self._templates[template_name] = Lazy diff --git a/plotly/package_data/templates/ggplot2.json b/plotly/package_data/templates/ggplot2.json index 6ea51d61db0..0862a426143 100644 --- a/plotly/package_data/templates/ggplot2.json +++ b/plotly/package_data/templates/ggplot2.json @@ -1 +1 @@ -{"layout": {"colorway": ["#F8766D", "#00BA38", "#619CFF"], "font": {"color": "rgb(51,51,51)"}, "paper_bgcolor": "white", "plot_bgcolor": "rgb(237,237,237)", "polar": {"bgcolor": "rgb(237,237,237)", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "ternary": {"bgcolor": "rgb(237,237,237)", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "black", "line": {"width": 0}, "opacity": 0.3}, "annotationdefaults": {"arrowhead": 0, "arrowwidth": 1}, "geo": {"landcolor": "rgb(237,237,237)", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "choropleth": [{"type": "choropleth", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmap": [{"type": "heatmap", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contour": [{"type": "contour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "surface": [{"type": "surface", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "carpet": [{"aaxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "baxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "rgb(237,237,237)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(217,217,217)"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["#F8766D", "#00BA38", "#619CFF"], "font": {"color": "rgb(51,51,51)"}, "paper_bgcolor": "white", "plot_bgcolor": "rgb(237,237,237)", "polar": {"bgcolor": "rgb(237,237,237)", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "ternary": {"bgcolor": "rgb(237,237,237)", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "black", "line": {"width": 0}, "opacity": 0.3}, "annotationdefaults": {"arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "rgb(237,237,237)", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "choropleth": [{"type": "choropleth", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmap": [{"type": "heatmap", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contour": [{"type": "contour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "surface": [{"type": "surface", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "carpet": [{"aaxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "baxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "rgb(237,237,237)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(217,217,217)"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/plotly_dark.json b/plotly/package_data/templates/plotly_dark.json new file mode 100644 index 00000000000..09b997558c8 --- /dev/null +++ b/plotly/package_data/templates/plotly_dark.json @@ -0,0 +1 @@ +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#f2f5fa"}, "paper_bgcolor": "#2a3f5f", "plot_bgcolor": "#EBF0F8", "polar": {"bgcolor": "#EBF0F8", "angularaxis": {"gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "#EBF0F8", "aaxis": {"gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "showgrid": false, "ticks": "", "zerolinecolor": "#C8D4E3"}, "yaxis": {"gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3"}, "scene": {"xaxis": {"backgroundcolor": "#EBF0F8", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "yaxis": {"backgroundcolor": "#EBF0F8", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "zaxis": {"backgroundcolor": "#EBF0F8", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "#2a3f5f", "landcolor": "#EBF0F8", "subunitcolor": "#2a3f5f", "showland": true, "showlakes": true, "lakecolor": "#2a3f5f"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#2a3f5f", "linecolor": "#2a3f5f", "minorgridcolor": "#2a3f5f", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#2a3f5f", "linecolor": "#2a3f5f", "minorgridcolor": "#2a3f5f", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "#C8D4E3"}, "font": {"color": "#2a3f5f"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "#C8D4E3"}, "font": {"color": "#2a3f5f"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/plotly_dark2.json b/plotly/package_data/templates/plotly_dark2.json new file mode 100644 index 00000000000..a7495e333b3 --- /dev/null +++ b/plotly/package_data/templates/plotly_dark2.json @@ -0,0 +1 @@ +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#f2f5fa"}, "paper_bgcolor": "rgb(17,17,17)", "plot_bgcolor": "rgb(17,17,17)", "polar": {"bgcolor": "rgb(17,17,17)", "angularaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "rgb(17,17,17)", "aaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": false, "ticks": "", "zerolinecolor": "#C8D4E3"}, "yaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3"}, "scene": {"xaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "yaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "zaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#f2f5fa", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#f2f5fa", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "subunitcolor": "#A2B1C6", "showland": true, "showlakes": true, "lakecolor": "rgb(17,17,17)"}, "updatemenudefaults": {"bgcolor": "#506784", "borderwidth": 0}, "sliderdefaults": {"bgcolor": "#C8D4E3", "borderwidth": 1, "bordercolor": "rgb(17,17,17)", "tickwidth": 0}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#A2B1C6", "linecolor": "#A2B1C6", "minorgridcolor": "#A2B1C6", "startlinecolor": "#A2B1C6"}, "baxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#A2B1C6", "linecolor": "#A2B1C6", "minorgridcolor": "#A2B1C6", "startlinecolor": "#A2B1C6"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#506784"}, "line": {"color": "rgb(17,17,17)"}}, "header": {"fill": {"color": "#2a3f5f"}, "line": {"color": "rgb(17,17,17)"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/plotly_light.json b/plotly/package_data/templates/plotly_light.json new file mode 100644 index 00000000000..fce8d29b46c --- /dev/null +++ b/plotly/package_data/templates/plotly_light.json @@ -0,0 +1 @@ +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "#EBF0F8", "polar": {"bgcolor": "#EBF0F8", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "#EBF0F8", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": false, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "#EBF0F8", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "yaxis": {"backgroundcolor": "#EBF0F8", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "zaxis": {"backgroundcolor": "#EBF0F8", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "#EBF0F8", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/plotly_light2.json b/plotly/package_data/templates/plotly_light2.json new file mode 100644 index 00000000000..436c58b9ddd --- /dev/null +++ b/plotly/package_data/templates/plotly_light2.json @@ -0,0 +1 @@ +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "white", "polar": {"bgcolor": "white", "angularaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "white", "aaxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": false, "ticks": "", "zerolinecolor": "#A2B1C6"}, "yaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6"}, "scene": {"xaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}, "yaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}, "zaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "white", "subunitcolor": "#C8D4E3", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/seaborn.json b/plotly/package_data/templates/seaborn.json index 2f24942c0ee..341112413bb 100644 --- a/plotly/package_data/templates/seaborn.json +++ b/plotly/package_data/templates/seaborn.json @@ -1 +1 @@ -{"layout": {"colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"bgcolor": "rgb(234,234,242)", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "rgb(234,234,242)", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "geo": {"landcolor": "rgb(234,234,242)", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "contour": [{"type": "contour", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "surface": [{"type": "surface", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"bgcolor": "rgb(234,234,242)", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "rgb(234,234,242)", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "geo": {"bgcolor": "white", "landcolor": "rgb(234,234,242)", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "contour": [{"type": "contour", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "surface": [{"type": "surface", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/templategen/definitions.py b/templategen/definitions.py index faac49ba631..161074d969f 100644 --- a/templategen/definitions.py +++ b/templategen/definitions.py @@ -1,5 +1,6 @@ from templategen.utils import initialize_template from .utils.colors import colors +import colorcet as cc # dict of template builder functions # This way we can loop over definitions in __init__.py @@ -76,9 +77,6 @@ def ggplot2(): def seaborn(): # Define colors # ------------- - # Based on theme_gray from - # https://github.com/tidyverse/ggplot2/blob/master/R/theme-defaults.r - # Set colorscale # N = len(sns.cm.rocket.colors) # [[i/(N-1), f'rgb({int(r*255)},{int(g*255)},{int(b*255)})'] @@ -173,3 +171,376 @@ def seaborn(): builders['seaborn'] = seaborn + + +# https://brand.plot.ly/ +plotly_clrs = { + 'Rhino Light 4': '#f2f5fa', + 'Rhino Light 3': '#F3F6FA', + 'Rhino Light 2': '#EBF0F8', + 'Rhino Light 1': '#DFE8F3', + 'Rhino Medium 2': '#C8D4E3', + 'Rhino Medium 1': '#A2B1C6', + 'Rhino Dark': '#506784', + 'Rhino Core': '#2a3f5f', + 'Dodger': '#119DFF', + 'Dodger Shade': '#0D76BF', + 'Aqua': '#09ffff', + 'Aqua Shade': '#19d3f3', + 'Lavender': '#e763fa', + 'Lavender Shade': '#ab63fa', + 'Cornflower': '#636efa', + 'Emerald': '#00cc96', + 'Sienna': '#EF553B' +} + +linear_bmw_5_95_c86_n256 = [ + [i/255, clr] for i, clr in enumerate(cc.b_linear_bmw_5_95_c86)] + +jupyterlab_output_clr = 'rgb(17,17,17)' + + +def plotly_light(): + # Define colors + # ------------- + colorscale = linear_bmw_5_95_c86_n256 + + # Hue cycle for 3 categories + # + # Created with: + # import seaborn as sns + # sns.set() + # [f'rgb({int(r*255)},{int(g*255)},{int(b*255)})' + # for r, g, b in sns.color_palette()] + colorway = [ + plotly_clrs['Cornflower'], + plotly_clrs['Sienna'], + plotly_clrs['Emerald'], + plotly_clrs['Lavender Shade'], + plotly_clrs['Aqua Shade'], + plotly_clrs['Lavender'] + ] + + # Set colorbar_common + colorbar_common = dict( + outlinewidth=0, + ticks='') + + # Common axis common properties + axis_common = dict( + showgrid=True, + gridcolor='white', + linecolor='white', + ticks='') + + # semi-transparent black and no outline + annotation_clr = plotly_clrs['Rhino Dark'] + shape_defaults = dict( + fillcolor=annotation_clr, + line={'width': 0}, + opacity=0.4) + + # Remove arrow head and make line thinner + annotation_defaults = { + 'arrowcolor': annotation_clr, + 'arrowhead': 0, + 'arrowwidth': 1 + + } + + template = initialize_template( + paper_clr='white', + font_clr=plotly_clrs['Rhino Core'], + panel_background_clr=plotly_clrs['Rhino Light 2'], + panel_grid_clr='white', + axis_ticks_clr=plotly_clrs['Rhino Core'], + zerolinecolor_clr='white', + table_cell_clr=plotly_clrs['Rhino Light 2'], + table_header_clr=plotly_clrs['Rhino Medium 2'], + table_line_clr='white', + colorway=colorway, + colorbar_common=colorbar_common, + colorscale=colorscale, + axis_common=axis_common, + annotation_defaults=annotation_defaults, + shape_defaults=shape_defaults + ) + + # disable vertical grid lines in 2D cartesian x-axis + template.layout.xaxis.showgrid = False + + # Increase grid width for 3d plots + template.layout.scene.xaxis.gridwidth = 2 + template.layout.scene.yaxis.gridwidth = 2 + template.layout.scene.zaxis.gridwidth = 2 + + # Set table header font color to white + return template + + +builders['plotly_light'] = plotly_light + + +def plotly_light2(): + # Define colors + # ------------- + colorscale = linear_bmw_5_95_c86_n256 + + # Hue cycle for 3 categories + # + # Created with: + # import seaborn as sns + # sns.set() + # [f'rgb({int(r*255)},{int(g*255)},{int(b*255)})' + # for r, g, b in sns.color_palette()] + colorway = [ + plotly_clrs['Cornflower'], + plotly_clrs['Sienna'], + plotly_clrs['Emerald'], + plotly_clrs['Lavender Shade'], + plotly_clrs['Aqua Shade'], + plotly_clrs['Lavender'] + ] + + # Set colorbar_common + colorbar_common = dict( + outlinewidth=0, + ticks='') + + # Common axis common properties + axis_common = dict( + showgrid=True, + gridcolor=plotly_clrs['Rhino Light 2'], + linecolor=plotly_clrs['Rhino Light 2'], + ticks='') + + # semi-transparent black and no outline + annotation_clr = plotly_clrs['Rhino Dark'] + shape_defaults = dict( + fillcolor=annotation_clr, + line={'width': 0}, + opacity=0.4) + + # Remove arrow head and make line thinner + annotation_defaults = { + 'arrowcolor': annotation_clr, + 'arrowhead': 0, + 'arrowwidth': 1 + + } + + template = initialize_template( + paper_clr='white', + font_clr=plotly_clrs['Rhino Core'], + panel_background_clr='white', + panel_grid_clr=plotly_clrs['Rhino Medium 2'], + axis_ticks_clr=plotly_clrs['Rhino Core'], + zerolinecolor_clr=plotly_clrs['Rhino Medium 1'], + table_cell_clr=plotly_clrs['Rhino Light 2'], + table_header_clr=plotly_clrs['Rhino Medium 2'], + table_line_clr='white', + colorway=colorway, + colorbar_common=colorbar_common, + colorscale=colorscale, + axis_common=axis_common, + annotation_defaults=annotation_defaults, + shape_defaults=shape_defaults + ) + + # disable vertical grid lines in 2D cartesian x-axis + template.layout.xaxis.showgrid = False + + # Increase grid width for 3d plots + opts = dict(gridwidth=2, gridcolor=plotly_clrs['Rhino Light 1']) + template.layout.scene.xaxis.update(opts) + template.layout.scene.yaxis.update(opts) + template.layout.scene.zaxis.update(opts) + + # Darken ternary + opts = dict(linecolor=plotly_clrs['Rhino Medium 1'], + gridcolor=plotly_clrs['Rhino Light 1']) + template.layout.ternary.aaxis.update(opts) + template.layout.ternary.baxis.update(opts) + template.layout.ternary.caxis.update(opts) + + # Set table header font color to white + return template + + +builders['plotly_light2'] = plotly_light2 + + +def plotly_dark(): + # Define colors + # ------------- + colorscale = linear_bmw_5_95_c86_n256 + + # Hue cycle for 3 categories + # + # Created with: + # import seaborn as sns + # sns.set() + # [f'rgb({int(r*255)},{int(g*255)},{int(b*255)})' + # for r, g, b in sns.color_palette()] + colorway = [ + plotly_clrs['Cornflower'], + plotly_clrs['Sienna'], + plotly_clrs['Emerald'], + plotly_clrs['Lavender Shade'], + plotly_clrs['Aqua Shade'], + plotly_clrs['Lavender'] + ] + + # Set colorbar_common + colorbar_common = dict( + outlinewidth=0, + ticks='') + + # Common axis common properties + axis_common = dict( + showgrid=True, + gridcolor=plotly_clrs['Rhino Medium 2'], + linecolor=plotly_clrs['Rhino Medium 2'], + ticks='') + + # semi-transparent black and no outline + annotation_clr = plotly_clrs['Rhino Dark'] + shape_defaults = dict( + fillcolor=annotation_clr, + line={'width': 0}, + opacity=0.4) + + # Remove arrow head and make line thinner + annotation_defaults = { + 'arrowcolor': annotation_clr, + 'arrowhead': 0, + 'arrowwidth': 1 + + } + + template = initialize_template( + paper_clr=plotly_clrs['Rhino Core'], + font_clr=plotly_clrs['Rhino Light 4'], + panel_background_clr=plotly_clrs['Rhino Light 2'], + panel_grid_clr=plotly_clrs['Rhino Core'], + axis_ticks_clr=plotly_clrs['Rhino Core'], + zerolinecolor_clr=plotly_clrs['Rhino Medium 2'], + table_cell_clr=plotly_clrs['Rhino Light 2'], + table_header_clr=plotly_clrs['Rhino Medium 2'], + table_line_clr=plotly_clrs['Rhino Medium 2'], + colorway=colorway, + colorbar_common=colorbar_common, + colorscale=colorscale, + axis_common=axis_common, + annotation_defaults=annotation_defaults, + shape_defaults=shape_defaults + ) + + # disable vertical grid lines in 2D cartesian x-axis + template.layout.xaxis.showgrid = False + + # Increase grid width for 3d plots + template.layout.scene.xaxis.gridwidth = 2 + template.layout.scene.yaxis.gridwidth = 2 + template.layout.scene.zaxis.gridwidth = 2 + + # Set table font colors back to dark + template.data.table[0].header.font.color = plotly_clrs['Rhino Core'] + template.data.table[0].cells.font.color = plotly_clrs['Rhino Core'] + + # Set table header font color to white + return template + + +builders['plotly_dark'] = plotly_dark + + +def plotly_dark2(): + # Define colors + # ------------- + colorscale = linear_bmw_5_95_c86_n256 + + # Hue cycle for 3 categories + # + # Created with: + # import seaborn as sns + # sns.set() + # [f'rgb({int(r*255)},{int(g*255)},{int(b*255)})' + # for r, g, b in sns.color_palette()] + colorway = [ + plotly_clrs['Cornflower'], + plotly_clrs['Sienna'], + plotly_clrs['Emerald'], + plotly_clrs['Lavender Shade'], + plotly_clrs['Aqua Shade'], + plotly_clrs['Lavender'] + ] + + # Set colorbar_common + colorbar_common = dict( + outlinewidth=0, + ticks='') + + # Common axis common properties + axis_common = dict( + showgrid=True, + gridcolor=plotly_clrs['Rhino Dark'], + linecolor=plotly_clrs['Rhino Dark'], + ticks='') + + # semi-transparent black and no outline + annotation_clr = plotly_clrs['Rhino Light 4'] + shape_defaults = dict( + fillcolor=annotation_clr, + line={'width': 0}, + opacity=0.4) + + # Remove arrow head and make line thinner + annotation_defaults = { + 'arrowcolor': annotation_clr, + 'arrowhead': 0, + 'arrowwidth': 1 + + } + + template = initialize_template( + paper_clr=jupyterlab_output_clr, + font_clr=plotly_clrs['Rhino Light 4'], + panel_background_clr=jupyterlab_output_clr, + panel_grid_clr=plotly_clrs['Rhino Medium 1'], + axis_ticks_clr=plotly_clrs['Rhino Medium 1'], + zerolinecolor_clr=plotly_clrs['Rhino Medium 2'], + table_cell_clr=plotly_clrs['Rhino Dark'], + table_header_clr=plotly_clrs['Rhino Core'], + table_line_clr=jupyterlab_output_clr, + colorway=colorway, + colorbar_common=colorbar_common, + colorscale=colorscale, + axis_common=axis_common, + annotation_defaults=annotation_defaults, + shape_defaults=shape_defaults + ) + + # disable vertical grid lines in 2D cartesian x-axis + template.layout.xaxis.showgrid = False + + # Increase grid width for 3d plots + template.layout.scene.xaxis.gridwidth = 2 + template.layout.scene.yaxis.gridwidth = 2 + template.layout.scene.zaxis.gridwidth = 2 + + # Button styling + template.layout.updatemenudefaults.bgcolor = plotly_clrs['Rhino Dark'] + template.layout.updatemenudefaults.borderwidth = 0 + + # Slider styling + template.layout.sliderdefaults.bgcolor = '#C8D4E3' + template.layout.sliderdefaults.borderwidth = 1 + template.layout.sliderdefaults.bordercolor = 'rgb(17,17,17)' + template.layout.sliderdefaults.tickwidth = 0 + + # Set table header font color to white + return template + + +builders['plotly_dark2'] = plotly_dark2 \ No newline at end of file diff --git a/templategen/utils/__init__.py b/templategen/utils/__init__.py index 28a23d76a03..688f6b94f11 100644 --- a/templategen/utils/__init__.py +++ b/templategen/utils/__init__.py @@ -127,6 +127,7 @@ def initialize_template(annotation_defaults, template.layout.annotationdefaults = annotation_defaults # Geo + template.layout.geo.bgcolor = paper_clr template.layout.geo.landcolor = panel_background_clr template.layout.geo.subunitcolor = panel_grid_clr template.layout.geo.showland = True From adda2b913a4f36c467d34518cd0ad92f110299a2 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sat, 13 Oct 2018 14:47:10 -0400 Subject: [PATCH 16/34] Remove dark 1, rename dark 2 just dark. --- plotly/io/_templates.py | 2 +- .../package_data/templates/plotly_dark.json | 2 +- .../package_data/templates/plotly_dark2.json | 1 - .../package_data/templates/plotly_light.json | 2 +- templategen/definitions.py | 89 +------------------ 5 files changed, 5 insertions(+), 91 deletions(-) delete mode 100644 plotly/package_data/templates/plotly_dark2.json diff --git a/plotly/io/_templates.py b/plotly/io/_templates.py index 5015ab67d80..c868287d5a9 100644 --- a/plotly/io/_templates.py +++ b/plotly/io/_templates.py @@ -35,7 +35,7 @@ def __init__(self): # Initialize built-in templates default_templates = ['ggplot2', 'seaborn', 'plotly_light', 'plotly_light2', - 'plotly_dark', 'plotly_dark2'] + 'plotly_dark'] for template_name in default_templates: self._templates[template_name] = Lazy diff --git a/plotly/package_data/templates/plotly_dark.json b/plotly/package_data/templates/plotly_dark.json index 09b997558c8..a7495e333b3 100644 --- a/plotly/package_data/templates/plotly_dark.json +++ b/plotly/package_data/templates/plotly_dark.json @@ -1 +1 @@ -{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#f2f5fa"}, "paper_bgcolor": "#2a3f5f", "plot_bgcolor": "#EBF0F8", "polar": {"bgcolor": "#EBF0F8", "angularaxis": {"gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "#EBF0F8", "aaxis": {"gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "showgrid": false, "ticks": "", "zerolinecolor": "#C8D4E3"}, "yaxis": {"gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3"}, "scene": {"xaxis": {"backgroundcolor": "#EBF0F8", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "yaxis": {"backgroundcolor": "#EBF0F8", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "zaxis": {"backgroundcolor": "#EBF0F8", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "#2a3f5f", "landcolor": "#EBF0F8", "subunitcolor": "#2a3f5f", "showland": true, "showlakes": true, "lakecolor": "#2a3f5f"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#2a3f5f", "linecolor": "#2a3f5f", "minorgridcolor": "#2a3f5f", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#2a3f5f", "linecolor": "#2a3f5f", "minorgridcolor": "#2a3f5f", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "#C8D4E3"}, "font": {"color": "#2a3f5f"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "#C8D4E3"}, "font": {"color": "#2a3f5f"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#f2f5fa"}, "paper_bgcolor": "rgb(17,17,17)", "plot_bgcolor": "rgb(17,17,17)", "polar": {"bgcolor": "rgb(17,17,17)", "angularaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "rgb(17,17,17)", "aaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": false, "ticks": "", "zerolinecolor": "#C8D4E3"}, "yaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3"}, "scene": {"xaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "yaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "zaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#f2f5fa", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#f2f5fa", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "subunitcolor": "#A2B1C6", "showland": true, "showlakes": true, "lakecolor": "rgb(17,17,17)"}, "updatemenudefaults": {"bgcolor": "#506784", "borderwidth": 0}, "sliderdefaults": {"bgcolor": "#C8D4E3", "borderwidth": 1, "bordercolor": "rgb(17,17,17)", "tickwidth": 0}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#A2B1C6", "linecolor": "#A2B1C6", "minorgridcolor": "#A2B1C6", "startlinecolor": "#A2B1C6"}, "baxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#A2B1C6", "linecolor": "#A2B1C6", "minorgridcolor": "#A2B1C6", "startlinecolor": "#A2B1C6"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#506784"}, "line": {"color": "rgb(17,17,17)"}}, "header": {"fill": {"color": "#2a3f5f"}, "line": {"color": "rgb(17,17,17)"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/plotly_dark2.json b/plotly/package_data/templates/plotly_dark2.json deleted file mode 100644 index a7495e333b3..00000000000 --- a/plotly/package_data/templates/plotly_dark2.json +++ /dev/null @@ -1 +0,0 @@ -{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#f2f5fa"}, "paper_bgcolor": "rgb(17,17,17)", "plot_bgcolor": "rgb(17,17,17)", "polar": {"bgcolor": "rgb(17,17,17)", "angularaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "rgb(17,17,17)", "aaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": false, "ticks": "", "zerolinecolor": "#C8D4E3"}, "yaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3"}, "scene": {"xaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "yaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "zaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#f2f5fa", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#f2f5fa", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "subunitcolor": "#A2B1C6", "showland": true, "showlakes": true, "lakecolor": "rgb(17,17,17)"}, "updatemenudefaults": {"bgcolor": "#506784", "borderwidth": 0}, "sliderdefaults": {"bgcolor": "#C8D4E3", "borderwidth": 1, "bordercolor": "rgb(17,17,17)", "tickwidth": 0}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#A2B1C6", "linecolor": "#A2B1C6", "minorgridcolor": "#A2B1C6", "startlinecolor": "#A2B1C6"}, "baxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#A2B1C6", "linecolor": "#A2B1C6", "minorgridcolor": "#A2B1C6", "startlinecolor": "#A2B1C6"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#506784"}, "line": {"color": "rgb(17,17,17)"}}, "header": {"fill": {"color": "#2a3f5f"}, "line": {"color": "rgb(17,17,17)"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/plotly_light.json b/plotly/package_data/templates/plotly_light.json index fce8d29b46c..d5aabb970cb 100644 --- a/plotly/package_data/templates/plotly_light.json +++ b/plotly/package_data/templates/plotly_light.json @@ -1 +1 @@ -{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "#EBF0F8", "polar": {"bgcolor": "#EBF0F8", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "#EBF0F8", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": false, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "#EBF0F8", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "yaxis": {"backgroundcolor": "#EBF0F8", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "zaxis": {"backgroundcolor": "#EBF0F8", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "#EBF0F8", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "#DFE8F3", "polar": {"bgcolor": "#DFE8F3", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "#DFE8F3", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": false, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "yaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "zaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "#DFE8F3", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/templategen/definitions.py b/templategen/definitions.py index 161074d969f..5868083bea3 100644 --- a/templategen/definitions.py +++ b/templategen/definitions.py @@ -251,7 +251,7 @@ def plotly_light(): template = initialize_template( paper_clr='white', font_clr=plotly_clrs['Rhino Core'], - panel_background_clr=plotly_clrs['Rhino Light 2'], + panel_background_clr=plotly_clrs['Rhino Light 1'], panel_grid_clr='white', axis_ticks_clr=plotly_clrs['Rhino Core'], zerolinecolor_clr='white', @@ -391,91 +391,6 @@ def plotly_dark(): plotly_clrs['Lavender'] ] - # Set colorbar_common - colorbar_common = dict( - outlinewidth=0, - ticks='') - - # Common axis common properties - axis_common = dict( - showgrid=True, - gridcolor=plotly_clrs['Rhino Medium 2'], - linecolor=plotly_clrs['Rhino Medium 2'], - ticks='') - - # semi-transparent black and no outline - annotation_clr = plotly_clrs['Rhino Dark'] - shape_defaults = dict( - fillcolor=annotation_clr, - line={'width': 0}, - opacity=0.4) - - # Remove arrow head and make line thinner - annotation_defaults = { - 'arrowcolor': annotation_clr, - 'arrowhead': 0, - 'arrowwidth': 1 - - } - - template = initialize_template( - paper_clr=plotly_clrs['Rhino Core'], - font_clr=plotly_clrs['Rhino Light 4'], - panel_background_clr=plotly_clrs['Rhino Light 2'], - panel_grid_clr=plotly_clrs['Rhino Core'], - axis_ticks_clr=plotly_clrs['Rhino Core'], - zerolinecolor_clr=plotly_clrs['Rhino Medium 2'], - table_cell_clr=plotly_clrs['Rhino Light 2'], - table_header_clr=plotly_clrs['Rhino Medium 2'], - table_line_clr=plotly_clrs['Rhino Medium 2'], - colorway=colorway, - colorbar_common=colorbar_common, - colorscale=colorscale, - axis_common=axis_common, - annotation_defaults=annotation_defaults, - shape_defaults=shape_defaults - ) - - # disable vertical grid lines in 2D cartesian x-axis - template.layout.xaxis.showgrid = False - - # Increase grid width for 3d plots - template.layout.scene.xaxis.gridwidth = 2 - template.layout.scene.yaxis.gridwidth = 2 - template.layout.scene.zaxis.gridwidth = 2 - - # Set table font colors back to dark - template.data.table[0].header.font.color = plotly_clrs['Rhino Core'] - template.data.table[0].cells.font.color = plotly_clrs['Rhino Core'] - - # Set table header font color to white - return template - - -builders['plotly_dark'] = plotly_dark - - -def plotly_dark2(): - # Define colors - # ------------- - colorscale = linear_bmw_5_95_c86_n256 - - # Hue cycle for 3 categories - # - # Created with: - # import seaborn as sns - # sns.set() - # [f'rgb({int(r*255)},{int(g*255)},{int(b*255)})' - # for r, g, b in sns.color_palette()] - colorway = [ - plotly_clrs['Cornflower'], - plotly_clrs['Sienna'], - plotly_clrs['Emerald'], - plotly_clrs['Lavender Shade'], - plotly_clrs['Aqua Shade'], - plotly_clrs['Lavender'] - ] - # Set colorbar_common colorbar_common = dict( outlinewidth=0, @@ -543,4 +458,4 @@ def plotly_dark2(): return template -builders['plotly_dark2'] = plotly_dark2 \ No newline at end of file +builders['plotly_dark'] = plotly_dark \ No newline at end of file From d13032b59f266b354a8f09523b8162f7658cdcba Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sat, 13 Oct 2018 15:04:10 -0400 Subject: [PATCH 17/34] Elide template in figure representation since these are typically going to be pretty large --- plotly/basedatatypes.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/plotly/basedatatypes.py b/plotly/basedatatypes.py index 50cee84d272..d97c581f817 100644 --- a/plotly/basedatatypes.py +++ b/plotly/basedatatypes.py @@ -371,8 +371,13 @@ def __repr__(self): Customize Figure representation when displayed in the terminal/notebook """ + props = self.to_plotly_json() + template_props = props.get('layout', {}).get('template', {}) + if template_props: + props['layout']['template'] = '...' + repr_str = BasePlotlyType._build_repr_for_class( - props=self.to_plotly_json(), + props=props, class_name=self.__class__.__name__) return repr_str From 09972fc7892f5fe9572da023e3d4ebbe31ec2542 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sat, 13 Oct 2018 15:20:02 -0400 Subject: [PATCH 18/34] Added colorcet to optional dependencies --- optional-requirements.txt | 3 +++ templategen/definitions.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/optional-requirements.txt b/optional-requirements.txt index f4a13ce86ec..4c6843877ff 100644 --- a/optional-requirements.txt +++ b/optional-requirements.txt @@ -24,6 +24,9 @@ psutil ## codegen dependencies ## yapf +## template generation ## +colorcet + ## ipython ## ipython diff --git a/templategen/definitions.py b/templategen/definitions.py index 5868083bea3..1c12a15443f 100644 --- a/templategen/definitions.py +++ b/templategen/definitions.py @@ -458,4 +458,4 @@ def plotly_dark(): return template -builders['plotly_dark'] = plotly_dark \ No newline at end of file +builders['plotly_dark'] = plotly_dark From ceb0e6c32edb285ea793da2459021371dd5070f8 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sat, 13 Oct 2018 15:31:56 -0400 Subject: [PATCH 19/34] Rename plotly_light -> plotly, plotly_light2 -> plotly_white decimate bmw colorscale in plotly templates to save space and reduce plotting latency. --- plotly/io/_templates.py | 2 +- plotly/package_data/templates/plotly.json | 1 + plotly/package_data/templates/plotly_dark.json | 2 +- plotly/package_data/templates/plotly_light.json | 1 - plotly/package_data/templates/plotly_light2.json | 1 - plotly/package_data/templates/plotly_white.json | 1 + templategen/definitions.py | 11 ++++++----- 7 files changed, 10 insertions(+), 9 deletions(-) create mode 100644 plotly/package_data/templates/plotly.json delete mode 100644 plotly/package_data/templates/plotly_light.json delete mode 100644 plotly/package_data/templates/plotly_light2.json create mode 100644 plotly/package_data/templates/plotly_white.json diff --git a/plotly/io/_templates.py b/plotly/io/_templates.py index c868287d5a9..1a671e06f93 100644 --- a/plotly/io/_templates.py +++ b/plotly/io/_templates.py @@ -34,7 +34,7 @@ def __init__(self): # Initialize built-in templates default_templates = ['ggplot2', 'seaborn', - 'plotly_light', 'plotly_light2', + 'plotly', 'plotly_white', 'plotly_dark'] for template_name in default_templates: diff --git a/plotly/package_data/templates/plotly.json b/plotly/package_data/templates/plotly.json new file mode 100644 index 00000000000..d416f01a18e --- /dev/null +++ b/plotly/package_data/templates/plotly.json @@ -0,0 +1 @@ +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "#DFE8F3", "polar": {"bgcolor": "#DFE8F3", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "#DFE8F3", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": false, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "yaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "zaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "#DFE8F3", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/plotly_dark.json b/plotly/package_data/templates/plotly_dark.json index a7495e333b3..1f33d57f434 100644 --- a/plotly/package_data/templates/plotly_dark.json +++ b/plotly/package_data/templates/plotly_dark.json @@ -1 +1 @@ -{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#f2f5fa"}, "paper_bgcolor": "rgb(17,17,17)", "plot_bgcolor": "rgb(17,17,17)", "polar": {"bgcolor": "rgb(17,17,17)", "angularaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "rgb(17,17,17)", "aaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": false, "ticks": "", "zerolinecolor": "#C8D4E3"}, "yaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3"}, "scene": {"xaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "yaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "zaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#f2f5fa", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#f2f5fa", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "subunitcolor": "#A2B1C6", "showland": true, "showlakes": true, "lakecolor": "rgb(17,17,17)"}, "updatemenudefaults": {"bgcolor": "#506784", "borderwidth": 0}, "sliderdefaults": {"bgcolor": "#C8D4E3", "borderwidth": 1, "bordercolor": "rgb(17,17,17)", "tickwidth": 0}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#A2B1C6", "linecolor": "#A2B1C6", "minorgridcolor": "#A2B1C6", "startlinecolor": "#A2B1C6"}, "baxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#A2B1C6", "linecolor": "#A2B1C6", "minorgridcolor": "#A2B1C6", "startlinecolor": "#A2B1C6"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#506784"}, "line": {"color": "rgb(17,17,17)"}}, "header": {"fill": {"color": "#2a3f5f"}, "line": {"color": "rgb(17,17,17)"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#f2f5fa"}, "paper_bgcolor": "rgb(17,17,17)", "plot_bgcolor": "rgb(17,17,17)", "polar": {"bgcolor": "rgb(17,17,17)", "angularaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "rgb(17,17,17)", "aaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": false, "ticks": "", "zerolinecolor": "#C8D4E3"}, "yaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3"}, "scene": {"xaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "yaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "zaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#f2f5fa", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#f2f5fa", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "subunitcolor": "#A2B1C6", "showland": true, "showlakes": true, "lakecolor": "rgb(17,17,17)"}, "updatemenudefaults": {"bgcolor": "#506784", "borderwidth": 0}, "sliderdefaults": {"bgcolor": "#C8D4E3", "borderwidth": 1, "bordercolor": "rgb(17,17,17)", "tickwidth": 0}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#A2B1C6", "linecolor": "#A2B1C6", "minorgridcolor": "#A2B1C6", "startlinecolor": "#A2B1C6"}, "baxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#A2B1C6", "linecolor": "#A2B1C6", "minorgridcolor": "#A2B1C6", "startlinecolor": "#A2B1C6"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#506784"}, "line": {"color": "rgb(17,17,17)"}}, "header": {"fill": {"color": "#2a3f5f"}, "line": {"color": "rgb(17,17,17)"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/plotly_light.json b/plotly/package_data/templates/plotly_light.json deleted file mode 100644 index d5aabb970cb..00000000000 --- a/plotly/package_data/templates/plotly_light.json +++ /dev/null @@ -1 +0,0 @@ -{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "#DFE8F3", "polar": {"bgcolor": "#DFE8F3", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "#DFE8F3", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": false, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "yaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "zaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "#DFE8F3", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/plotly_light2.json b/plotly/package_data/templates/plotly_light2.json deleted file mode 100644 index 436c58b9ddd..00000000000 --- a/plotly/package_data/templates/plotly_light2.json +++ /dev/null @@ -1 +0,0 @@ -{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "white", "polar": {"bgcolor": "white", "angularaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "white", "aaxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": false, "ticks": "", "zerolinecolor": "#A2B1C6"}, "yaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6"}, "scene": {"xaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}, "yaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}, "zaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "white", "subunitcolor": "#C8D4E3", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]]}, "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#00024b"], [0.00392156862745098, "#00024d"], [0.00784313725490196, "#00034f"], [0.011764705882352941, "#000351"], [0.01568627450980392, "#000453"], [0.0196078431372549, "#000455"], [0.023529411764705882, "#000457"], [0.027450980392156862, "#000459"], [0.03137254901960784, "#00045b"], [0.03529411764705882, "#00045d"], [0.0392156862745098, "#00055f"], [0.043137254901960784, "#000561"], [0.047058823529411764, "#000564"], [0.050980392156862744, "#000566"], [0.054901960784313725, "#000568"], [0.058823529411764705, "#00056a"], [0.06274509803921569, "#00056c"], [0.06666666666666667, "#01056e"], [0.07058823529411765, "#010570"], [0.07450980392156863, "#010572"], [0.0784313725490196, "#020575"], [0.08235294117647059, "#020577"], [0.08627450980392157, "#020579"], [0.09019607843137255, "#03057b"], [0.09411764705882353, "#03057d"], [0.09803921568627451, "#030580"], [0.10196078431372549, "#030582"], [0.10588235294117647, "#040584"], [0.10980392156862745, "#040586"], [0.11372549019607843, "#040588"], [0.11764705882352941, "#04058b"], [0.12156862745098039, "#05058d"], [0.12549019607843137, "#05058f"], [0.12941176470588237, "#050591"], [0.13333333333333333, "#050594"], [0.13725490196078433, "#050596"], [0.1411764705882353, "#050598"], [0.1450980392156863, "#05059a"], [0.14901960784313725, "#05069d"], [0.15294117647058825, "#05069f"], [0.1568627450980392, "#0506a1"], [0.1607843137254902, "#0506a4"], [0.16470588235294117, "#0506a6"], [0.16862745098039217, "#0506a8"], [0.17254901960784313, "#0407aa"], [0.17647058823529413, "#0407ad"], [0.1803921568627451, "#0407af"], [0.1843137254901961, "#0407b1"], [0.18823529411764706, "#0408b3"], [0.19215686274509805, "#0408b6"], [0.19607843137254902, "#0508b8"], [0.2, "#0509ba"], [0.20392156862745098, "#0609bc"], [0.20784313725490197, "#0709be"], [0.21176470588235294, "#080ac0"], [0.21568627450980393, "#090ac2"], [0.2196078431372549, "#0a0bc4"], [0.2235294117647059, "#0b0bc6"], [0.22745098039215686, "#0d0cc8"], [0.23137254901960785, "#0e0cca"], [0.23529411764705882, "#100dcc"], [0.23921568627450981, "#110dce"], [0.24313725490196078, "#130ed0"], [0.24705882352941178, "#140ed2"], [0.25098039215686274, "#160fd4"], [0.2549019607843137, "#1710d6"], [0.25882352941176473, "#1910d8"], [0.2627450980392157, "#1b11da"], [0.26666666666666666, "#1c11db"], [0.27058823529411763, "#1e12dd"], [0.27450980392156865, "#2013df"], [0.2784313725490196, "#2113e0"], [0.2823529411764706, "#2314e2"], [0.28627450980392155, "#2514e4"], [0.2901960784313726, "#2715e5"], [0.29411764705882354, "#2a15e7"], [0.2980392156862745, "#2c16e8"], [0.30196078431372547, "#2e16ea"], [0.3058823529411765, "#3117eb"], [0.30980392156862746, "#3317ec"], [0.3137254901960784, "#3618ee"], [0.3176470588235294, "#3918ef"], [0.3215686274509804, "#3c19f0"], [0.3254901960784314, "#3e19f1"], [0.32941176470588235, "#4119f2"], [0.3333333333333333, "#4419f3"], [0.33725490196078434, "#471af4"], [0.3411764705882353, "#4a1af5"], [0.34509803921568627, "#4d1af6"], [0.34901960784313724, "#501bf6"], [0.35294117647058826, "#531bf7"], [0.3568627450980392, "#561bf8"], [0.3607843137254902, "#591bf8"], [0.36470588235294116, "#5c1bf9"], [0.3686274509803922, "#5f1bfa"], [0.37254901960784315, "#621bfa"], [0.3764705882352941, "#651cfa"], [0.3803921568627451, "#681cfb"], [0.3843137254901961, "#6b1cfb"], [0.38823529411764707, "#6e1cfb"], [0.39215686274509803, "#711cfb"], [0.396078431372549, "#741cfc"], [0.4, "#771cfc"], [0.403921568627451, "#7a1cfc"], [0.40784313725490196, "#7d1cfc"], [0.4117647058823529, "#801cfc"], [0.41568627450980394, "#831cfc"], [0.4196078431372549, "#851cfc"], [0.4235294117647059, "#881cfd"], [0.42745098039215684, "#8b1cfd"], [0.43137254901960786, "#8e1cfd"], [0.43529411764705883, "#901cfd"], [0.4392156862745098, "#931cfd"], [0.44313725490196076, "#951cfd"], [0.4470588235294118, "#981cfd"], [0.45098039215686275, "#9b1cfd"], [0.4549019607843137, "#9d1cfd"], [0.4588235294117647, "#a01cfd"], [0.4627450980392157, "#a21cfd"], [0.4666666666666667, "#a51cfd"], [0.47058823529411764, "#a71cfd"], [0.4745098039215686, "#aa1cfd"], [0.47843137254901963, "#ac1cfd"], [0.4823529411764706, "#ae1cfe"], [0.48627450980392156, "#b11cfe"], [0.49019607843137253, "#b31cfe"], [0.49411764705882355, "#b61cfe"], [0.4980392156862745, "#b81cfe"], [0.5019607843137255, "#ba1cfd"], [0.5058823529411764, "#bd1cfd"], [0.5098039215686274, "#bf1cfd"], [0.5137254901960784, "#c11cfd"], [0.5176470588235295, "#c31dfd"], [0.5215686274509804, "#c61dfd"], [0.5254901960784314, "#c81efd"], [0.5294117647058824, "#ca1ffd"], [0.5333333333333333, "#cc1ffd"], [0.5372549019607843, "#ce20fd"], [0.5411764705882353, "#d021fd"], [0.5450980392156862, "#d122fd"], [0.5490196078431373, "#d323fd"], [0.5529411764705883, "#d524fd"], [0.5568627450980392, "#d726fd"], [0.5607843137254902, "#d927fd"], [0.5647058823529412, "#da28fd"], [0.5686274509803921, "#dc2afd"], [0.5725490196078431, "#dd2bfd"], [0.5764705882352941, "#df2cfd"], [0.5803921568627451, "#e12efd"], [0.5843137254901961, "#e230fd"], [0.5882352941176471, "#e331fd"], [0.592156862745098, "#e533fd"], [0.596078431372549, "#e634fd"], [0.6, "#e836fe"], [0.6039215686274509, "#e938fe"], [0.6078431372549019, "#ea3afe"], [0.611764705882353, "#eb3bfe"], [0.615686274509804, "#ed3dfe"], [0.6196078431372549, "#ee3ffe"], [0.6235294117647059, "#ef41fe"], [0.6274509803921569, "#f043fe"], [0.6313725490196078, "#f144fe"], [0.6352941176470588, "#f246fe"], [0.6392156862745098, "#f348fe"], [0.6431372549019608, "#f44afe"], [0.6470588235294118, "#f54cfe"], [0.6509803921568628, "#f54efe"], [0.6549019607843137, "#f650fe"], [0.6588235294117647, "#f752fe"], [0.6627450980392157, "#f854fe"], [0.6666666666666666, "#f856fd"], [0.6705882352941176, "#f958fd"], [0.6745098039215687, "#fa5afd"], [0.6784313725490196, "#fa5cfd"], [0.6823529411764706, "#fb5efd"], [0.6862745098039216, "#fb61fd"], [0.6901960784313725, "#fb63fd"], [0.6941176470588235, "#fc65fd"], [0.6980392156862745, "#fc67fd"], [0.7019607843137254, "#fc69fd"], [0.7058823529411765, "#fd6bfd"], [0.7098039215686275, "#fd6dfd"], [0.7137254901960784, "#fd6ffd"], [0.7176470588235294, "#fd72fd"], [0.7215686274509804, "#fd74fd"], [0.7254901960784313, "#fd76fd"], [0.7294117647058823, "#fd78fd"], [0.7333333333333333, "#fd7afc"], [0.7372549019607844, "#fd7cfc"], [0.7411764705882353, "#fd7efc"], [0.7450980392156863, "#fd80fc"], [0.7490196078431373, "#fe82fc"], [0.7529411764705882, "#fe84fc"], [0.7568627450980392, "#fe86fc"], [0.7607843137254902, "#fe88fc"], [0.7647058823529411, "#fe8afc"], [0.7686274509803922, "#fe8cfc"], [0.7725490196078432, "#fe8efc"], [0.7764705882352941, "#fe8ffc"], [0.7803921568627451, "#fe91fc"], [0.7843137254901961, "#fe93fc"], [0.788235294117647, "#fe95fc"], [0.792156862745098, "#fe97fc"], [0.796078431372549, "#fe98fc"], [0.8, "#fe9afc"], [0.803921568627451, "#fe9cfc"], [0.807843137254902, "#fe9efc"], [0.8117647058823529, "#fe9ffc"], [0.8156862745098039, "#fea1fc"], [0.8196078431372549, "#fea3fc"], [0.8235294117647058, "#fea5fd"], [0.8274509803921568, "#fea6fd"], [0.8313725490196079, "#fea8fd"], [0.8352941176470589, "#feaafd"], [0.8392156862745098, "#feabfd"], [0.8431372549019608, "#feadfd"], [0.8470588235294118, "#feaefd"], [0.8509803921568627, "#feb0fd"], [0.8549019607843137, "#feb2fd"], [0.8588235294117647, "#feb3fd"], [0.8627450980392157, "#feb5fd"], [0.8666666666666667, "#feb7fd"], [0.8705882352941177, "#feb8fd"], [0.8745098039215686, "#febafd"], [0.8784313725490196, "#febbfd"], [0.8823529411764706, "#febdfd"], [0.8862745098039215, "#febefe"], [0.8901960784313725, "#fec0fe"], [0.8941176470588236, "#fec2fe"], [0.8980392156862745, "#fec3fe"], [0.9019607843137255, "#fec5fe"], [0.9058823529411765, "#fec6fe"], [0.9098039215686274, "#fec8fe"], [0.9137254901960784, "#fec9fe"], [0.9176470588235294, "#fecbfe"], [0.9215686274509803, "#feccfe"], [0.9254901960784314, "#fecefe"], [0.9294117647058824, "#fecffe"], [0.9333333333333333, "#fed1fe"], [0.9372549019607843, "#fed2fe"], [0.9411764705882353, "#fed4fe"], [0.9450980392156862, "#fed5fe"], [0.9490196078431372, "#fed7fe"], [0.9529411764705882, "#fed8fe"], [0.9568627450980393, "#fedafe"], [0.9607843137254902, "#fedbfe"], [0.9647058823529412, "#feddfe"], [0.9686274509803922, "#fedefe"], [0.9725490196078431, "#fee0fe"], [0.9764705882352941, "#fee1fe"], [0.9803921568627451, "#fee3fe"], [0.984313725490196, "#fee4fe"], [0.9882352941176471, "#fee6fe"], [0.9921568627450981, "#fee7fe"], [0.996078431372549, "#fee9fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/plotly_white.json b/plotly/package_data/templates/plotly_white.json new file mode 100644 index 00000000000..56bdf50bc96 --- /dev/null +++ b/plotly/package_data/templates/plotly_white.json @@ -0,0 +1 @@ +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "white", "polar": {"bgcolor": "white", "angularaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "white", "aaxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": false, "ticks": "", "zerolinecolor": "#A2B1C6"}, "yaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6"}, "scene": {"xaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}, "yaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}, "zaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "white", "subunitcolor": "#C8D4E3", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/templategen/definitions.py b/templategen/definitions.py index 1c12a15443f..acf609ce8f9 100644 --- a/templategen/definitions.py +++ b/templategen/definitions.py @@ -195,12 +195,13 @@ def seaborn(): } linear_bmw_5_95_c86_n256 = [ - [i/255, clr] for i, clr in enumerate(cc.b_linear_bmw_5_95_c86)] + [i/255, clr] for i, clr in enumerate(cc.b_linear_bmw_5_95_c86) + if i % 16 == 0 or i == 255] jupyterlab_output_clr = 'rgb(17,17,17)' -def plotly_light(): +def plotly(): # Define colors # ------------- colorscale = linear_bmw_5_95_c86_n256 @@ -278,10 +279,10 @@ def plotly_light(): return template -builders['plotly_light'] = plotly_light +builders['plotly'] = plotly -def plotly_light2(): +def plotly_white(): # Define colors # ------------- colorscale = linear_bmw_5_95_c86_n256 @@ -367,7 +368,7 @@ def plotly_light2(): return template -builders['plotly_light2'] = plotly_light2 +builders['plotly_white'] = plotly_white def plotly_dark(): From e6fabe99e11027cbc78dbee434c2b3b04acc93b5 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sat, 13 Oct 2018 15:55:55 -0400 Subject: [PATCH 20/34] Set autocolorscale to false in templates to make sure template colorscale is used across trace types. Also crop bwm colorscale slightly so that it has better contrast on both light and dark themes. No it doesn't go quite as close to black or as close to white. --- plotly/package_data/templates/ggplot2.json | 2 +- plotly/package_data/templates/plotly.json | 2 +- plotly/package_data/templates/plotly_dark.json | 2 +- plotly/package_data/templates/plotly_white.json | 2 +- plotly/package_data/templates/seaborn.json | 2 +- templategen/definitions.py | 5 +++-- templategen/utils/__init__.py | 1 + 7 files changed, 9 insertions(+), 7 deletions(-) diff --git a/plotly/package_data/templates/ggplot2.json b/plotly/package_data/templates/ggplot2.json index 0862a426143..5ebdb0370b8 100644 --- a/plotly/package_data/templates/ggplot2.json +++ b/plotly/package_data/templates/ggplot2.json @@ -1 +1 @@ -{"layout": {"colorway": ["#F8766D", "#00BA38", "#619CFF"], "font": {"color": "rgb(51,51,51)"}, "paper_bgcolor": "white", "plot_bgcolor": "rgb(237,237,237)", "polar": {"bgcolor": "rgb(237,237,237)", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "ternary": {"bgcolor": "rgb(237,237,237)", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "black", "line": {"width": 0}, "opacity": 0.3}, "annotationdefaults": {"arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "rgb(237,237,237)", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "choropleth": [{"type": "choropleth", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmap": [{"type": "heatmap", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contour": [{"type": "contour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "surface": [{"type": "surface", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]]}, "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "carpet": [{"aaxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "baxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "rgb(237,237,237)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(217,217,217)"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["#F8766D", "#00BA38", "#619CFF"], "font": {"color": "rgb(51,51,51)"}, "paper_bgcolor": "white", "plot_bgcolor": "rgb(237,237,237)", "polar": {"bgcolor": "rgb(237,237,237)", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "ternary": {"bgcolor": "rgb(237,237,237)", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "black", "line": {"width": 0}, "opacity": 0.3}, "annotationdefaults": {"arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "rgb(237,237,237)", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "choropleth": [{"type": "choropleth", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmap": [{"type": "heatmap", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contour": [{"type": "contour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "surface": [{"type": "surface", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false}, "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "carpet": [{"aaxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "baxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "rgb(237,237,237)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(217,217,217)"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/plotly.json b/plotly/package_data/templates/plotly.json index d416f01a18e..235cbc717d2 100644 --- a/plotly/package_data/templates/plotly.json +++ b/plotly/package_data/templates/plotly.json @@ -1 +1 @@ -{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "#DFE8F3", "polar": {"bgcolor": "#DFE8F3", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "#DFE8F3", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": false, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "yaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "zaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "#DFE8F3", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "#DFE8F3", "polar": {"bgcolor": "#DFE8F3", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "#DFE8F3", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": false, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "yaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "zaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "#DFE8F3", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/plotly_dark.json b/plotly/package_data/templates/plotly_dark.json index 1f33d57f434..f349c40c390 100644 --- a/plotly/package_data/templates/plotly_dark.json +++ b/plotly/package_data/templates/plotly_dark.json @@ -1 +1 @@ -{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#f2f5fa"}, "paper_bgcolor": "rgb(17,17,17)", "plot_bgcolor": "rgb(17,17,17)", "polar": {"bgcolor": "rgb(17,17,17)", "angularaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "rgb(17,17,17)", "aaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": false, "ticks": "", "zerolinecolor": "#C8D4E3"}, "yaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3"}, "scene": {"xaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "yaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "zaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#f2f5fa", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#f2f5fa", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "subunitcolor": "#A2B1C6", "showland": true, "showlakes": true, "lakecolor": "rgb(17,17,17)"}, "updatemenudefaults": {"bgcolor": "#506784", "borderwidth": 0}, "sliderdefaults": {"bgcolor": "#C8D4E3", "borderwidth": 1, "bordercolor": "rgb(17,17,17)", "tickwidth": 0}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#A2B1C6", "linecolor": "#A2B1C6", "minorgridcolor": "#A2B1C6", "startlinecolor": "#A2B1C6"}, "baxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#A2B1C6", "linecolor": "#A2B1C6", "minorgridcolor": "#A2B1C6", "startlinecolor": "#A2B1C6"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#506784"}, "line": {"color": "rgb(17,17,17)"}}, "header": {"fill": {"color": "#2a3f5f"}, "line": {"color": "rgb(17,17,17)"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#f2f5fa"}, "paper_bgcolor": "rgb(17,17,17)", "plot_bgcolor": "rgb(17,17,17)", "polar": {"bgcolor": "rgb(17,17,17)", "angularaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "rgb(17,17,17)", "aaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": false, "ticks": "", "zerolinecolor": "#C8D4E3"}, "yaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3"}, "scene": {"xaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "yaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "zaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#f2f5fa", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#f2f5fa", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "subunitcolor": "#A2B1C6", "showland": true, "showlakes": true, "lakecolor": "rgb(17,17,17)"}, "updatemenudefaults": {"bgcolor": "#506784", "borderwidth": 0}, "sliderdefaults": {"bgcolor": "#C8D4E3", "borderwidth": 1, "bordercolor": "rgb(17,17,17)", "tickwidth": 0}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#A2B1C6", "linecolor": "#A2B1C6", "minorgridcolor": "#A2B1C6", "startlinecolor": "#A2B1C6"}, "baxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#A2B1C6", "linecolor": "#A2B1C6", "minorgridcolor": "#A2B1C6", "startlinecolor": "#A2B1C6"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#506784"}, "line": {"color": "rgb(17,17,17)"}}, "header": {"fill": {"color": "#2a3f5f"}, "line": {"color": "rgb(17,17,17)"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/plotly_white.json b/plotly/package_data/templates/plotly_white.json index 56bdf50bc96..3159ba62412 100644 --- a/plotly/package_data/templates/plotly_white.json +++ b/plotly/package_data/templates/plotly_white.json @@ -1 +1 @@ -{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "white", "polar": {"bgcolor": "white", "angularaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "white", "aaxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": false, "ticks": "", "zerolinecolor": "#A2B1C6"}, "yaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6"}, "scene": {"xaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}, "yaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}, "zaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "white", "subunitcolor": "#C8D4E3", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]]}, "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#00024b"], [0.06274509803921569, "#00056c"], [0.12549019607843137, "#05058f"], [0.18823529411764706, "#0408b3"], [0.25098039215686274, "#160fd4"], [0.3137254901960784, "#3618ee"], [0.3764705882352941, "#651cfa"], [0.4392156862745098, "#931cfd"], [0.5019607843137255, "#ba1cfd"], [0.5647058823529412, "#da28fd"], [0.6274509803921569, "#f043fe"], [0.6901960784313725, "#fb63fd"], [0.7529411764705882, "#fe84fc"], [0.8156862745098039, "#fea1fc"], [0.8784313725490196, "#febbfd"], [0.9411764705882353, "#fed4fe"], [1.0, "#feeafe"]], "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "white", "polar": {"bgcolor": "white", "angularaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "white", "aaxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": false, "ticks": "", "zerolinecolor": "#A2B1C6"}, "yaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6"}, "scene": {"xaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}, "yaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}, "zaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "white", "subunitcolor": "#C8D4E3", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/seaborn.json b/plotly/package_data/templates/seaborn.json index 341112413bb..9a031077d95 100644 --- a/plotly/package_data/templates/seaborn.json +++ b/plotly/package_data/templates/seaborn.json @@ -1 +1 @@ -{"layout": {"colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"bgcolor": "rgb(234,234,242)", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "rgb(234,234,242)", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "geo": {"bgcolor": "white", "landcolor": "rgb(234,234,242)", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "contour": [{"type": "contour", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "surface": [{"type": "surface", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"bgcolor": "rgb(234,234,242)", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "rgb(234,234,242)", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "geo": {"bgcolor": "white", "landcolor": "rgb(234,234,242)", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "contour": [{"type": "contour", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "surface": [{"type": "surface", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/templategen/definitions.py b/templategen/definitions.py index acf609ce8f9..c44d597fd66 100644 --- a/templategen/definitions.py +++ b/templategen/definitions.py @@ -194,9 +194,10 @@ def seaborn(): 'Sienna': '#EF553B' } +bmw_subset = cc.b_linear_bmw_5_95_c86[50:230] linear_bmw_5_95_c86_n256 = [ - [i/255, clr] for i, clr in enumerate(cc.b_linear_bmw_5_95_c86) - if i % 16 == 0 or i == 255] + [i/(len(bmw_subset)-1), clr] for i, clr in enumerate(bmw_subset) + if i % 16 == 0 or i == (len(bmw_subset)-1)] jupyterlab_output_clr = 'rgb(17,17,17)' diff --git a/templategen/utils/__init__.py b/templategen/utils/__init__.py index 688f6b94f11..2c00f08db94 100644 --- a/templategen/utils/__init__.py +++ b/templategen/utils/__init__.py @@ -38,6 +38,7 @@ def set_all_colorscales(template, colorscale): parent = trace[parent_path[1:]] if 'colorscale' in parent: parent.colorscale = colorscale + parent.autocolorscale = False def set_all_colorbars(template, colorbar): From a025e79d42d5964b748c411e8f94769ba6b30098 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sat, 13 Oct 2018 16:09:07 -0400 Subject: [PATCH 21/34] Switch to 5-color ggplot2 colorway --- plotly/package_data/templates/ggplot2.json | 2 +- templategen/definitions.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plotly/package_data/templates/ggplot2.json b/plotly/package_data/templates/ggplot2.json index 5ebdb0370b8..b1c3679f163 100644 --- a/plotly/package_data/templates/ggplot2.json +++ b/plotly/package_data/templates/ggplot2.json @@ -1 +1 @@ -{"layout": {"colorway": ["#F8766D", "#00BA38", "#619CFF"], "font": {"color": "rgb(51,51,51)"}, "paper_bgcolor": "white", "plot_bgcolor": "rgb(237,237,237)", "polar": {"bgcolor": "rgb(237,237,237)", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "ternary": {"bgcolor": "rgb(237,237,237)", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "black", "line": {"width": 0}, "opacity": 0.3}, "annotationdefaults": {"arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "rgb(237,237,237)", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "choropleth": [{"type": "choropleth", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmap": [{"type": "heatmap", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contour": [{"type": "contour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "surface": [{"type": "surface", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false}, "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "carpet": [{"aaxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "baxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "rgb(237,237,237)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(217,217,217)"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["#F8766D", "#A3A500", "#00BF7D", "#00B0F6", "#E76BF3"], "font": {"color": "rgb(51,51,51)"}, "paper_bgcolor": "white", "plot_bgcolor": "rgb(237,237,237)", "polar": {"bgcolor": "rgb(237,237,237)", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "ternary": {"bgcolor": "rgb(237,237,237)", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "black", "line": {"width": 0}, "opacity": 0.3}, "annotationdefaults": {"arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "rgb(237,237,237)", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "choropleth": [{"type": "choropleth", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmap": [{"type": "heatmap", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contour": [{"type": "contour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "surface": [{"type": "surface", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false}, "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "carpet": [{"aaxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "baxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "rgb(237,237,237)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(217,217,217)"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/templategen/definitions.py b/templategen/definitions.py index c44d597fd66..5b25b1a5383 100644 --- a/templategen/definitions.py +++ b/templategen/definitions.py @@ -19,7 +19,7 @@ def ggplot2(): colorscale = [[0, 'rgb(20,44,66)'], [1, 'rgb(90,179,244)']] # Hue cycle for 3 categories - colorway = ['#F8766D', '#00BA38', '#619CFF'] + colorway = ["#F8766D", "#A3A500", "#00BF7D", "#00B0F6", "#E76BF3"] # Set colorbar_common # Note the light inward ticks in From 4103057b3fd24828dcda940034c6e6e5a7b7294b Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sat, 13 Oct 2018 18:47:56 -0400 Subject: [PATCH 22/34] Added 'presentation' template that can be used to increase the size of text and lines/markers for several trace types. --- plotly/io/_templates.py | 2 +- .../package_data/templates/presentation.json | 1 + templategen/definitions.py | 38 +++++++++++++++++++ 3 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 plotly/package_data/templates/presentation.json diff --git a/plotly/io/_templates.py b/plotly/io/_templates.py index 1a671e06f93..ebc2e7891af 100644 --- a/plotly/io/_templates.py +++ b/plotly/io/_templates.py @@ -35,7 +35,7 @@ def __init__(self): # Initialize built-in templates default_templates = ['ggplot2', 'seaborn', 'plotly', 'plotly_white', - 'plotly_dark'] + 'plotly_dark', 'presentation'] for template_name in default_templates: self._templates[template_name] = Lazy diff --git a/plotly/package_data/templates/presentation.json b/plotly/package_data/templates/presentation.json new file mode 100644 index 00000000000..516ac5227db --- /dev/null +++ b/plotly/package_data/templates/presentation.json @@ -0,0 +1 @@ +{"layout": {"font": {"size": 18}, "xaxis": {"automargin": true}, "yaxis": {"automargin": true}}, "data": {"scatter": [{"line": {"width": 3}, "marker": {"size": 9}, "type": "scatter"}], "scattergl": [{"line": {"width": 3}, "marker": {"size": 9}, "type": "scattergl"}], "scatter3d": [{"line": {"width": 3}, "marker": {"size": 9}, "type": "scatter3d"}], "scatterpolar": [{"line": {"width": 3}, "marker": {"size": 9}, "type": "scatterpolar"}], "scatterpolargl": [{"line": {"width": 3}, "marker": {"size": 9}, "type": "scatterpolargl"}], "scatterternary": [{"line": {"width": 3}, "marker": {"size": 9}, "type": "scatterternary"}], "scattergeo": [{"line": {"width": 3}, "marker": {"size": 9}, "type": "scattergeo"}], "table": [{"cells": {"height": 30}, "header": {"height": 36}, "type": "table"}]}} \ No newline at end of file diff --git a/templategen/definitions.py b/templategen/definitions.py index 5b25b1a5383..7a5d542ce8f 100644 --- a/templategen/definitions.py +++ b/templategen/definitions.py @@ -1,3 +1,4 @@ +from plotly.graph_objs.layout import Template from templategen.utils import initialize_template from .utils.colors import colors import colorcet as cc @@ -461,3 +462,40 @@ def plotly_dark(): builders['plotly_dark'] = plotly_dark + + +def presentation(): + """ + Template the increases the size of text and markers/lines for certain + trace types + """ + + # Create blank template + template = Template() + + # Increase global font size by 1.5x (12->18) + template.layout.font.size = 18 + + # Set automargin to true in case we need to adjust margins for + # larger font size + template.layout.xaxis.automargin = True + template.layout.yaxis.automargin = True + + # Increase scatter markers and lines by 1.5x + opts = {'marker': {'size': 9}, 'line': {'width': 3}} + template.data.scatter = [opts] + template.data.scattergl = [opts] + template.data.scatter3d = [opts] + template.data.scatterpolar = [opts] + template.data.scatterpolargl = [opts] + template.data.scatterternary = [opts] + template.data.scattergeo = [opts] + + # Increase default height of table cells + template.data.table = [{'header': {'height': 36}, + 'cells': {'height': 30}}] + + return template + + +builders['presentation'] = presentation From b7bfcb755b8a117b2a7bfef8f645dbcf561202d1 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sat, 13 Oct 2018 18:56:00 -0400 Subject: [PATCH 23/34] Added template to package_data in setup.py so that they are included in builds --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 97a149dce93..e6dc61dd443 100644 --- a/setup.py +++ b/setup.py @@ -266,7 +266,7 @@ def run(self): 'plotly/matplotlylib/mplexporter', 'plotly/matplotlylib/mplexporter/renderers', '_plotly_utils'] + graph_objs_packages + validator_packages, - package_data={'plotly': ['package_data/*'], + package_data={'plotly': ['package_data/*', 'package_data/templates/*'], 'plotlywidget': ['static/*']}, data_files=[ ('share/jupyter/nbextensions/plotlywidget', [ From 0d9ec8817d3f7dbbb7f4d244fd2a446c44bc8b02 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sun, 14 Oct 2018 05:36:28 -0400 Subject: [PATCH 24/34] Test fixes --- plotly/io/_templates.py | 7 +++++-- plotly/tests/test_core/test_graph_objs/test_template.py | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/plotly/io/_templates.py b/plotly/io/_templates.py index ebc2e7891af..0e259b536aa 100644 --- a/plotly/io/_templates.py +++ b/plotly/io/_templates.py @@ -1,5 +1,3 @@ -from math import gcd - from plotly.basedatatypes import BaseFigure from plotly.graph_objs import Figure from plotly.validators.layout import TemplateValidator @@ -15,6 +13,11 @@ import json from functools import reduce +try: + from math import gcd +except ImportError: + # Python 2 + from fractions import gcd # Create Lazy sentinal object to indicate that a template should be loaded # on-demand from package_data diff --git a/plotly/tests/test_core/test_graph_objs/test_template.py b/plotly/tests/test_core/test_graph_objs/test_template.py index faf7e7c5fb2..532c923b7ae 100644 --- a/plotly/tests/test_core/test_graph_objs/test_template.py +++ b/plotly/tests/test_core/test_graph_objs/test_template.py @@ -161,7 +161,7 @@ def test_template_in(self): self.assertFalse(42 in pio.templates) def test_template_iter(self): - self.assertEqual(set(pio.templates), {'test_template'}) + self.assertIn('test_template', set(pio.templates)) class TestToTemplated(TestCase): From 798168f9b77feea1008a6fd73375c31ed57c7917 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sun, 14 Oct 2018 05:49:26 -0400 Subject: [PATCH 25/34] Add __future__ absolute import statements needed for Python 2.7 --- plotly/basedatatypes.py | 3 ++- plotly/io/_json.py | 2 ++ plotly/io/_orca.py | 2 ++ plotly/io/_templates.py | 2 ++ plotly/io/_utils.py | 2 ++ 5 files changed, 10 insertions(+), 1 deletion(-) diff --git a/plotly/basedatatypes.py b/plotly/basedatatypes.py index d97c581f817..6ef21c7cab0 100644 --- a/plotly/basedatatypes.py +++ b/plotly/basedatatypes.py @@ -1,3 +1,5 @@ +from __future__ import absolute_import + import collections import re import six @@ -20,7 +22,6 @@ from .utils import ElidedPrettyPrinter from .validators import (DataValidator, LayoutValidator, FramesValidator) - # Optional imports # ---------------- np = get_module('numpy') diff --git a/plotly/io/_json.py b/plotly/io/_json.py index 30b91c3a991..8561fdc8bed 100644 --- a/plotly/io/_json.py +++ b/plotly/io/_json.py @@ -1,3 +1,5 @@ +from __future__ import absolute_import + from six import string_types import json diff --git a/plotly/io/_orca.py b/plotly/io/_orca.py index 045e2407d6a..e79659a45da 100644 --- a/plotly/io/_orca.py +++ b/plotly/io/_orca.py @@ -1,3 +1,5 @@ +from __future__ import absolute_import + import atexit import json import os diff --git a/plotly/io/_templates.py b/plotly/io/_templates.py index 0e259b536aa..2941a6c8512 100644 --- a/plotly/io/_templates.py +++ b/plotly/io/_templates.py @@ -1,3 +1,5 @@ +from __future__ import absolute_import + from plotly.basedatatypes import BaseFigure from plotly.graph_objs import Figure from plotly.validators.layout import TemplateValidator diff --git a/plotly/io/_utils.py b/plotly/io/_utils.py index 8ce4989b8bd..bdf35b04094 100644 --- a/plotly/io/_utils.py +++ b/plotly/io/_utils.py @@ -1,3 +1,5 @@ +from __future__ import absolute_import + import plotly from plotly.basedatatypes import BaseFigure import plotly.graph_objs as go From aaa66b8c3682151e5273dad3363fb1ae3d2eb671 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sun, 14 Oct 2018 06:13:51 -0400 Subject: [PATCH 26/34] Only compare EPS images There is still some non-determinism with raster image formats, and eps is enough to execute the full orca pipeline --- plotly/tests/test_orca/images/darwin/fig1.jpeg | Bin 21530 -> 0 bytes plotly/tests/test_orca/images/darwin/fig1.jpg | Bin 21530 -> 0 bytes plotly/tests/test_orca/images/darwin/fig1.png | Bin 13892 -> 0 bytes plotly/tests/test_orca/images/darwin/fig1.webp | Bin 3506 -> 0 bytes .../tests/test_orca/images/darwin/latexfig.jpeg | Bin 26394 -> 0 bytes .../tests/test_orca/images/darwin/latexfig.jpg | Bin 26394 -> 0 bytes .../tests/test_orca/images/darwin/latexfig.png | Bin 33274 -> 0 bytes .../tests/test_orca/images/darwin/latexfig.webp | Bin 6936 -> 0 bytes .../tests/test_orca/images/darwin/topofig.jpeg | Bin 20621 -> 0 bytes .../tests/test_orca/images/darwin/topofig.jpg | Bin 20621 -> 0 bytes .../tests/test_orca/images/darwin/topofig.png | Bin 40284 -> 0 bytes .../tests/test_orca/images/darwin/topofig.webp | Bin 5598 -> 0 bytes plotly/tests/test_orca/images/linux/fig1.jpeg | Bin 22038 -> 0 bytes plotly/tests/test_orca/images/linux/fig1.jpg | Bin 22038 -> 0 bytes plotly/tests/test_orca/images/linux/fig1.png | Bin 13431 -> 0 bytes plotly/tests/test_orca/images/linux/fig1.webp | Bin 3736 -> 0 bytes .../tests/test_orca/images/linux/latexfig.jpeg | Bin 26550 -> 0 bytes .../tests/test_orca/images/linux/latexfig.jpg | Bin 26550 -> 0 bytes .../tests/test_orca/images/linux/latexfig.png | Bin 33523 -> 0 bytes .../tests/test_orca/images/linux/latexfig.webp | Bin 7038 -> 0 bytes .../tests/test_orca/images/linux/topofig.jpeg | Bin 20607 -> 0 bytes plotly/tests/test_orca/images/linux/topofig.jpg | Bin 20607 -> 0 bytes plotly/tests/test_orca/images/linux/topofig.png | Bin 40276 -> 0 bytes .../tests/test_orca/images/linux/topofig.webp | Bin 5604 -> 0 bytes plotly/tests/test_orca/test_to_image.py | 6 +++--- 25 files changed, 3 insertions(+), 3 deletions(-) delete mode 100644 plotly/tests/test_orca/images/darwin/fig1.jpeg delete mode 100644 plotly/tests/test_orca/images/darwin/fig1.jpg delete mode 100644 plotly/tests/test_orca/images/darwin/fig1.png delete mode 100644 plotly/tests/test_orca/images/darwin/fig1.webp delete mode 100644 plotly/tests/test_orca/images/darwin/latexfig.jpeg delete mode 100644 plotly/tests/test_orca/images/darwin/latexfig.jpg delete mode 100644 plotly/tests/test_orca/images/darwin/latexfig.png delete mode 100644 plotly/tests/test_orca/images/darwin/latexfig.webp delete mode 100644 plotly/tests/test_orca/images/darwin/topofig.jpeg delete mode 100644 plotly/tests/test_orca/images/darwin/topofig.jpg delete mode 100644 plotly/tests/test_orca/images/darwin/topofig.png delete mode 100644 plotly/tests/test_orca/images/darwin/topofig.webp delete mode 100644 plotly/tests/test_orca/images/linux/fig1.jpeg delete mode 100644 plotly/tests/test_orca/images/linux/fig1.jpg delete mode 100644 plotly/tests/test_orca/images/linux/fig1.png delete mode 100644 plotly/tests/test_orca/images/linux/fig1.webp delete mode 100644 plotly/tests/test_orca/images/linux/latexfig.jpeg delete mode 100644 plotly/tests/test_orca/images/linux/latexfig.jpg delete mode 100644 plotly/tests/test_orca/images/linux/latexfig.png delete mode 100644 plotly/tests/test_orca/images/linux/latexfig.webp delete mode 100644 plotly/tests/test_orca/images/linux/topofig.jpeg delete mode 100644 plotly/tests/test_orca/images/linux/topofig.jpg delete mode 100644 plotly/tests/test_orca/images/linux/topofig.png delete mode 100644 plotly/tests/test_orca/images/linux/topofig.webp diff --git a/plotly/tests/test_orca/images/darwin/fig1.jpeg b/plotly/tests/test_orca/images/darwin/fig1.jpeg deleted file mode 100644 index 910ef01f542deecd50b4e4a01d654a839ff788b8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 21530 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 O{i!eidL7_owf;Y@!kv2n diff --git a/plotly/tests/test_orca/images/darwin/fig1.jpg b/plotly/tests/test_orca/images/darwin/fig1.jpg deleted file mode 100644 index 910ef01f542deecd50b4e4a01d654a839ff788b8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 21530 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 O{i!eidL7_owf;Y@!kv2n diff --git a/plotly/tests/test_orca/images/darwin/fig1.png b/plotly/tests/test_orca/images/darwin/fig1.png deleted file mode 100644 index fb0da492dfc69efeedf5dd8ab7d91ba0bed8ecce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13892 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 diff --git a/plotly/tests/test_orca/images/darwin/latexfig.jpeg b/plotly/tests/test_orca/images/darwin/latexfig.jpeg deleted file mode 100644 index 030a84c19983d4f5abbac9e14f994d1065e901d9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 26394 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 uHU9rup<@# diff --git a/plotly/tests/test_orca/images/darwin/latexfig.jpg b/plotly/tests/test_orca/images/darwin/latexfig.jpg deleted file mode 100644 index 030a84c19983d4f5abbac9e14f994d1065e901d9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 26394 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 uHU9rup<@# diff --git a/plotly/tests/test_orca/images/darwin/latexfig.png b/plotly/tests/test_orca/images/darwin/latexfig.png deleted file mode 100644 index fcf6ffa14f4e2a6339ea82c7cc6f31bac407e550..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 33274 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 Z8p>~}r5K}8AX9_lwz`g5k;()A{{n#{EAapT diff --git a/plotly/tests/test_orca/images/darwin/latexfig.webp b/plotly/tests/test_orca/images/darwin/latexfig.webp deleted file mode 100644 index dbf80ded0d8e3478a87e7e0bb5fab88e957eaa79..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6936 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 diff --git a/plotly/tests/test_orca/images/darwin/topofig.jpeg b/plotly/tests/test_orca/images/darwin/topofig.jpeg deleted file mode 100644 index 82c2e2e3de79e72ce22be9a0038481e058c9141e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 20621 zcmeIa1yo$mwl~>2o^lJG?3sH+$F&wxN9Q;f;LVdxI4k!-JK@51$WnG`hVa1 z?)T=+x89oX-8-|^thvRivzk6#=bT-&YwutE_OA1?@UjlTm6MW{0>Hrm0C2EBz{?Wg z0{{X3ukzOs0ag%^5&tTv$jC^@XsGDuXsBpt=$JT|=or`-XlPh?SlBqYxOlkenD_+v zxCF4zxPM&)?yr^zh^VlJxEN>{uy6l2%S$H!4;AhTz7+xP4FDbw4gnADr58XAdrl;{ zzZJm07dUtXL?mPsR5Wx9*bnM(0r0SU!y_UfAt55de(ei84?x62!hg*vj!dBP8Rd;5 zAy+_bHY%+|RTq)!)EOQ37pFipbmCVeq-6AO85o(E-}CVD@e2rk_$VnQEh8(Zrmmr> zrLCiDVrph?VQFRU?BeR??&0Yb^es3f^m|x%Tzo=eQu2?K)STSB{DQ)w;*#o`+PeCN z#-`@(p5DIxfx)5S>6zKNdC0==#f{Ca?LRxad;16H7nfJpH@A294}Zx82SE5Yv0%r4 z6YM|9g$I)h9ud~1D1XTX2k#E62zZD{uQ`$N#Z^!~I}*I%3P2^4h|R9*LZjtYJtO+! zG=)w~_kM%^{4de|CfWZz!2KKPdo z{7VP^|D^*8{$jhC)&N~5I7E1C@jWZc|4-P#lG|G>8;ken1-ml8=e+R=V{jUXz7!u! zlN>R8egO#QJ>!9|3L4-uf;aUjZQ=V@_1DdEzHo^Q6x|m2SUK{vhgj67Z#go5p85{_ zQ7Jr~&tdHr4=*(|xeaP%slN+wh{%`57gdP&@1zP42abjxB+{c-$rtlA3yc8CY?AWO z-pU6fP`4R6LeILMZQN!yDQlt{lAI(KI!#|gL>u{m#TCTidx<3S+02Smud}xH7`n&P&v~=hhjE(1+2T=?hEHvJ)`T z(j}cvVJZ%<8qIcyfZ>k;qI~y?{NTa*q*u1#7({m4F1t@QDKoL=eME_`zSrKvt-SuQ zAc*%6Ik#6?&Or0Qk$l_D@u_*Xv91~3i>U>I81LUEOOlU>7vqHE6+;}(m<9h2S0)&` z;q0VT1h5iOr&AsO4A~l_9K7xWR=)B7=iC7HkTpIZFABoE-UM%31jite0{KQ}&YxN2 zs-8ahvgV=M7MRB70k(btG7p%uD(NsU{;-mVAS4Rx&T2-tR2m#Mh<;t8lg(s)JtciD zdR@7xZF^dq4-pOy-&1;>PzkS`EHF^+RJSi#{5WPExtfYZsG^I?EbpPa<8eH5Dz||$ zo2KqswZZb)xpFat`rXIjff>ueXGb~ZL|)WASE;bNUjLZa0lDA28T&!yZ|gc9Rku94 zmN~CF2ljO!_$ep!X_2IqnU@0PwhH-AOr_mQ)Of?0%MQRqC;H*39B#{;@JZ9E75yG) z!KV5Pz;&>csr*3J-;U4U38Bb3SCWD7R_rT7SS12-66z9FaOicP4!Dm|o7C1oI;WBL z9;CZlROFKN05?0ZsfS{pHW);S?*0&@R?$?@g4MwIs>!zV1;D(uSA2tqP!FB1{_5$@ zDZr2w>jdQ1B%11E?hKkiZX^TuHOf=I#am>ehCaM0TzEU(__Jz{#5&pLD!rq>@&Me}1lHBr05x&(O$8J}5-P)ZX7@{$oe%Dz zF4yN;-w6te*+sLccbI%N4SG_j3MDoEbO+GyJiEmYs-{ne8U6Gdyso{=! zHN16t9o2AbhH;y)73lTpSA0T(nrO!1Hd(woJBT2P-i@s)J92gfeDFK`{U30%6S6wH76m9Dopt5eOHms-vJz%Q zO2W5~pp18KuIC8!qThIhO>GTqN&$8Ej;>iKB?uhN+%eAr#o`2rW*`5^5)CmshxVp2 zy&rk6YHC5c<1fCA>#dHd%b4Sj{$JJ6IXhjhFmj@=CxayX6gY>vu2E$#fPv{30EF{t zOrK~QiJfya!|IEXz|eI?^ecR+YRrugDc{4?a$n{@m=bSky|zu7D5W9ArA4)kWbaiZ zzraZne)>l%Jb}OLu|D{_-B{oKcj_d#h6+Es7eFO-u*+i9WKC_{`U?Oscq7dUBzw)%hI%;qR;Rwh+e7#Fdf+CCP^v%-*DmBx&V1S~p~p9S@ty6H+tl|J->y>) z#)@e5*SjCjYW)!#XJ50-HfpZiW7kq*bdSU7joh7gVV1~ypYa!{NVP45$ZoL6R=XU# zt+Wxla%N6+{L!jq$2kz>oMo%n{Dk$h%qcfS)nlT=x>(l>CzZ`$1kSE1Ui7r3hOpqz z@JSb)$$UnbAoozgc;uA9hM!?cPj=b9g1Ht)AniN1pjpgw-FEVb=eK%oWos6ZF+@(X z!kB)wg=bMjr^eBX`|IKM?_c*HnPgleDSKKtn(-w%HJX#xr0ryt=n)dCNOJsrY=in) zACCpuPZs(?_{w+c*LwYhPzKb@<%TG~HcN1SSW-XCW*8vC4q`}DoHYh|oerzf^phuY zX&F@t(uXbf>sUliGFZETPx6-JD1#xOZoXwuBFn{){1_;PN?wvst4K_vjZbs-$~(X{ ze{I5sabS!faiZ#)s=q`tIw;%d4y+z3H

aZY;2uvZ(Dh*qGVOG?TZ}h1c-)UDQ^T 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

aZY;2uvZ(Dh*qGVOG?TZ}h1c-)UDQ^T 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 $8U)ecE?t#2U)A{PeIqdAIzc;#KO-)T_ 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 diff --git a/plotly/tests/test_orca/images/linux/fig1.jpeg b/plotly/tests/test_orca/images/linux/fig1.jpeg deleted file mode 100644 index 0dcf2e9344bcf00c611549f6b7f9ace108f70552..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 22038 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 diff --git a/plotly/tests/test_orca/images/linux/fig1.jpg b/plotly/tests/test_orca/images/linux/fig1.jpg deleted file mode 100644 index 0dcf2e9344bcf00c611549f6b7f9ace108f70552..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 22038 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 diff --git a/plotly/tests/test_orca/images/linux/fig1.png b/plotly/tests/test_orca/images/linux/fig1.png deleted file mode 100644 index 1f0df13a98083141e9c616c144213314a82748f3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13431 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 Cfp*gX diff --git a/plotly/tests/test_orca/images/linux/fig1.webp b/plotly/tests/test_orca/images/linux/fig1.webp deleted file mode 100644 index 6d566fb9ee0d85ce5faec5a5a4fda6b155463c31..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3736 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 diff --git a/plotly/tests/test_orca/images/linux/latexfig.jpeg b/plotly/tests/test_orca/images/linux/latexfig.jpeg deleted file mode 100644 index d64be03fe20691e21fb82dd7f391afd2b9bd7936..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 26550 zcmeHvXINCr((WQ>kSrjef`A}kAgF`^kt8BHCl!?>Ad=%?AV^dYP(U&Qk|gJx1VnPq zISI@V2bdY|!US90=j^k;eb2o=zTp{I^z?LhRaaG4RlnVPeS2fTk!w=2QUC@90APSW zz}_Gr0bpV7zxID)fiG-a?EM!$E-nr(0X`ui0X_i%Au$;-ArUDN0Rag)2`Sl;BjiU2 zi76;4j!=TnNA?@R*#9OLHa_^pBSZv5VCjGO+N%V}@iEphOR+Fc0+{3&SmYRcwE#0X zP8^IcFW}n?0}~4y2Nw^YfRG5Rkaq;Y1pCIs#=^nD#s+J1Re~OKr<1{B9zkuMyOP3|CN=iw~$X-)X zRa4i{)Y3M*bN8N+v5Bd*jjf%%gQL@vryibO-p_o3f?tM&hP`?n9v7dG_%JF$!-vMEj?S*`p5DIxf$@pSsp*;7x%mb7>e~9o<`!amXP+(%0P8DR z;P0=5{X`czNEaqH$Wpw0x-c;9!8aB;HqME2xD?__c(<%5Po95-Pj%%*Y*rNk%LQc^ z_3el4gfy&tK-t6#hvZvHumeqW<_Ra&WNFNcRUwS%6mYs z%pS0QPK;7Xk_tHdRyh^iOlTGP-r(azwBit|YY)hHhO7hRC8-oK4!^GlDezj-4ON+J zkTf8(!CH@h)2}RB^%J_0LAOXs6ga|$5ifKxRN^;%GRgbXPl_6v?>tagPwKj`2c#E( zEqd(%Vx~a24@V5<;rFXmbDQf%jx6)_CL6>Ri!pnE14uU8uigL5hM)e&gyib%0j=Pd zS7N0Hxc7kBQs`D&(tU;Hz$X7^sP=6|EVp*cJwRk~4=DGLv=+uaLl6%+zXu#a!%{Zc zx1^_)^f6|1d=O*1dDETQ{i@c#N} zPK$P$?*R~Ukha^=Uxp&E->De!u6zL!DGd_j^H0?9nV7&#c{T|tmDuu1PW{5O~n-< z*tWvzy|vMPqkT?I$jb=xcwQf2dz;sCM_YG9qr8|aN}pTN6F(_95s2kq8O6!lw_A;7 z>xzL})-xYjaASi@ey(D_nmO92-|TGcibK5=*`Cm@clE;po#w?Vyx1hyw}WUm z7SO)cT{`K*r#bnIS`~Ol1>nUbelc5)c-a@01V-23%&5)N^Jg9!HNVhdd|>^B%_(A7 zF_`W&hb{BJdyXyM1C*g71}J>h?tisjC0kT<^P+45_W%iMehFK23Uo06x^py!AUVzl z;5hW=WQZ<~-e`xsN_qGF>35X^x9{!&dN}fmL(pd4ojDFnQ;s-y!ozRR$rTB(3M3Y6 zD6otSWrOzobv;Qo+5>dJ1woGt?cU8V0ofUZ?#w~gaSwNyU8*nG**^lz&n;^d74n7ms2k&A+Z$AJSTO90) z;E=jK;Ha%mG?oiap^o|a5edsQhaQXh%}c2nyq}5;e>W3GBXU;sJ4eSQ4i@{Yb4roEs5s^ifO&pn_VFa*?!VEdBxZ= zy?taKqY{D?_~%wTn>XGhYUD47mW_rsr*8_6I28rF9Q5bey{7*rezs)Z{3Ds?C{Zap ztU$_@t42MWZ;N-2Z?07LPZ$uqX5VVHOV0$nTyxnb#{cp)Arn25FENF$C`z zGB?;!(|bUh2lKq!d$d$s(XK|w+R>~cC#(ey%wcM>FBRiaygkex+OWG+Azx|*erW{s zLKOFa#GRULdPoQA7SbPdaU{@Ti)2&Adw|@A*D4>zA<_HVMwbS}bhUnxM!0s4Y|8`C ziHrSK75b$e&{gsJ(pUS}b}&tU8gOzl^h;M?N9)d(Y~i*5?Y)Y={dGu6x~{3F7U!U8 z`tCbzIK}_w%m21>&q=fvv{(Eqw~~`~HI`RzgX_{ccjJG8HC9_7@fp!=UuiWxjqWZ! z_Nt=Cs%o7N!{R^W!!M-7Mx)FtP&SYqETu23G(BD3JtH1W<5Ckqwx#XP-To(2XVz4H z!sTAqXWKmhp&m`dmkOnH7`Xc}3)8J30UT~MHw%KHqP(eRW+PoV(QXAG#J$#vf-#~N^Q14=B>{vHrUE}4Q5ytVyyVyu) zSh>ZDRf{kj=k*aiX%;$4?gnwBY`H&T7dU<~+SM~;Zgn%t#g?7(QoRFF5v+Nv5@r`~ zHEBR&I$4Vr>>0L zc$=H_;`o9g>$}_C@g0mJcZav{myRS1bNoS?N+&znlK0IV-Y)21it~LHNgsne$M;ip zZyJsG6+1@` zTf?u`niJGhIdEj)I@4AsuQ&{SXRtHRjQ0GU9iClILfI(HaGH94d-`3auY#?jD#*Or zj4mepHAILl+-(Cx9ECYk(;t@oH{+t)19}F*dZ6i#;g?rzMdy#AiHnB%)^h)9N1CS zrKXIu4UpX27Yj^01?8}$8tw@>b6P83#a_i@sYCBC`A}BjlPc(xk!-#ozSIdm<$aSY?KCiIbvYT|3 zfR)b9jo`$&%jWt1ar2v-0s>avF$D#FtX45|)Y6#gotZw$URiNPw+2(!f*1AxoOU9z zrw^hFGPd8@&y~g%^VV(LlBCk08=z8>1gH;1UT+V}9R@#@k{Hf^^d3DA*`BL-!*mC_ z)(*W4*n%tmH(5#%{s4w$acEoWt{1OvFuJX7fl-zs_PUD8*K!-j7hnV@iJZge`nyH@ zjz}VC$-su@ZYQjPG8*N(-6g1e!vDb{IvdpeB_AM5Qt)FS+KG2o`ZY6h-Qbfu_%(xvoU5J)z5SKHwqp=sNJ{`&f}3ZXNSbCQq2aQdhnHz z)>@X7KTpNTle+fSsp#mjN%kjC;8>GVF}7O>Lzun%lUmX9w|rCdDkco#VkcXQpIa5$ z`MESKdYJ72B;{l#`q<@`)QiQX<)`3L@1_>Cm&TY3N&I({H4@H|0&44YV}J;ugR!Dd zs?TDsQ-$DwsB`(7-Zv`LD&*|a1f9}6zK!-_q0N~_zT?bKMNh&*E6m`$lU+SqJ9$NG ze9@#=?B@qKgr5Xl?Obn;bayf$l+Nk=Nmdsl$e%^A$+q6j);ZPByRch!BT|$;ik@4- zKGjlv)NT(*$k!%~i})rZ@m~c`lMyTV?e;fe|0bkuzbkr22QK+&IB03*e~4LP5acrR z8#nk0x-o`e?q4)BFTv&7gEwc4VSLEPKJ0IQeJy(o-=0G}WpsQDtIarrwq}%OJzYaNzg<{jJo5-bTDjbi@lAP|@eA(G zM?o*-DI1B(FZHnwiLqi*y%_$IWWt6TJwZEw%b1IgXe%BP9*EwiK1GGW+&>0t=Q%J5 zaWbyxF*(gu4$-@4a@4rG>475%2z`b@TaSXV;S1@5>Ire~EW5(YYxR)bDWy#Z$gCf9 z>q81h3_ki>^Hi=;WZRR>s8!Bu9GH-tsy#s15R8f>nSTr<$Oj1g(X^6o6}}%iA=!vD zl4W-ytxM2gAq-s%YIUp+V1LkU;6X#Ol7RI0j^lr{qpT!Gj{4R!$M*rMzEu263^^}aJazKPIj}ANE&9drSF;F-KR}+Ug?}?RV0z{s;v%{iKLWz1;x8_m;G+p(~KO2H!RUv(PY6XdbX^VY;FpH5MZzY%~9~?{>J(IcC zVtsn?OopSqXi}0G0H`C|uCTh}tGp(4Q$p3J@)Pd?i(uYw5p)yV=u3A(PO0Cpwzo_b zp|=^o#!1y3)PG|1hkhI=DmBiFzbDgwqAtmakIBy*zY>|%+5{;!ZIJ*Yc*qE3had*; zyVCxN>O7RDH@eL^n}K_}>yNqX!+C7*8B34is_~TAhssng;>To)l8y!St~wKBp6f!+ z(VoS2@wPVky^7lXeOfhq5A}0R^L<6(ua;_P?%n0`e@6iHCiVs+ZQDNQ^&oSneeDI3(tsT)8=H| z26P}HO^{ls8Xc!yvR(Dk6fx(HEwJyKeeur@@+)r-{B){cy|aV#3YhvhNRRScUYXH$w_f|4E1Ej z&PDLIQnNQEn^GK`AE1vS`ZVeJ+}hjohWH0obD?qA#<}y;Uh;$eJWK0RNB!i5`5cpa zuZE_VH`+pb8YJKnlcY~z{pL1>OFaColnWJXAu*aRy&9H%&o4~ZpMAJg2~4uyE~>zB zVd`}epCGb)wg)isENwu^C3agbNc+xo+MIR7KR_+(5e=O@yTJc z-mNvnle*%9mUm`bH5WcPG##I(lEA_*dps3M>_lSIO0GacD@Rl^qGu5Fxq`N*St97D z>8ljZ!m`k|xzbTbH=@LmSkRS@auPoXI^LOjLN~y~<^~wK%#r+tYv9hqubCAvt?_Nf zzt8;d{!*`n7NpP9`%j&d9j^!|P!C?b{ANHh$uwIBmA;l$ebi#|jk)3JSH08XWzbTL z9f8u4$&vI#V{MYCEOu{Ug}8;y%nN-Z2zv#c#pF1GVry2OKn5KTH6C4aZ0W}g=79Jv zBrh;{@@glNf0COXf{;=BsDHXFbQ#{*`MG}Oya{Wt1=THWsRl){6B<2SO%+CESGH8z zgvG7X*uA4wkStA7t5^qCrVG~lx`e7J7CAo6bbAeM;1vK>XP zd7*b9<5G(i+p}b-O=$JoIQJ8W8dEA>K|9uf+ZoZYl;jwEdp$6^xCmXzK~q^A^v-F@ zfyvklUHinm`*{!WU^vuyxDVj?&CYEl7*+WS}32>uuW zH9r*w>5p;yAM`IT2}m3aJN`%aDoSF9dB(~0#5PY*ns%pdZnk$`ec?yG^uNxQ8x|Gz zuO{|0QC^U7a3J5Zv%q0S{&RHyEAIMO+ZG>dpxyZ-YCY!)%F6egRvX3vLz68n>m!T= zVv}2p%*@Ogn_ywB*R}g}dtfsRCtO$UV@8Kh-%^6^6|7#0_9>FEDZsuq^}U z;UKgAUl-167NvdG$Fzp5)}ker)E5q-slOzi(R8n7TU41MG^6Jge%fL9IiJ1C9C&%l zeVtLGDygA^J3rdh-r0!1v70^L;6!@FM~?{)&7t`5^Zt1llDGQ_(-*s27Y9bY)+@*n zb`8p%cM7{Uw3fMZ=i_tEqoT>_PI0qAY!Vf*TG@?f-{UdENM|eU!`Vs%-I0134sl2G zpgH=c#dXaJeA(%_#K{3w3ZXBAP0zn?m27epl%m$^i6cAk*N!!q2XZ1~Z&?qSqZwqj_r9ccXAD z+>QJGEhh8fP9u!l&)n`cP6~6d2XS3fP0}`{>NH=MvNf%K%6QG6wK(T}=4+@ibO2sX z;V>{*RZb7v@XX`R<+6gF344nF#uo#h;7uApY!7v?T5Q{9W<+1Mw%IZua-kJOW?vyK zaiv4U=S}gKw!9Qx(J%0=^cReI`X|lrn7Ul<;Kj)uY^hs6IpG-T7aAnp=<*_x`K29Z znJ&LD6K;}#&?vN-DJr{IV^w3#m5ha2h2fRTbfw!8l&^S4s%5Zcu+jFsC=K##8CdtRA6H=n%dc@V)}@eh?3g-?HA zD$|$S6_{&{M+m8%or|LG%xxal95ykk(ated7Zj-P8FuL|e2@m_v}GxAq}qJm33#yg zB!A6^$L=yFA$LGO!G%z?!DJ5*eGj@NnEU%V-xK0gt^u8B*IS^6f+J~dW}0=^JPz;S zy7<>!slFx1Y!CD9n9`<@!uEz28Ue~OHQE2P^uUpi|7;h%wn&D8adJiIsQFRndo!QI z!-tf9*%JGocJupzN?32Hpo`hp4%2OAX8JC|JdW;#G``4}EvNrmUGD*BDi-6~zjKqC zx-R|QwnM)6Ju%WFHZeptsu06m5HO$#U3nz^eGH(5IaI7PB>h%f{8V>`b`3G7zAP)@ zJ0DzGRv5rIHzdHVuJO!8WxN%4p3-cDvnQReOcY~nNVkdHx?jp|jj8Fp!YzI2G^A}r zUGYma6)M_=nbvpXs7_N+&piV!sVqy4h`@^hB`V2t3fJ<+E&H3AR@8m#p>!Md@K*2O z86Ph1$0nhydjK&_&Gbd|8tDVlHpfiKoAKh-lc$e z7|QGQMygq@=`QZnM!61V9sA7g?WKsh7C^v1Cuexahx+~)Aud4fhaq>sMyu8r9Wh16 zceqCpQ7fI2Q+j7GXVt7IX2bi-!Vrep8{ON%KSDX?A1qc=*vI&!D0K=bx8U6)02Y$?l|Cs_%atra2_E}YrlnxNV;SjcVIYl*4vhB+QrtYotT;!)&aTA6&)xY3gW&a>wN9-K1}dUdZTpEJmjjcIvtBxU(+@c?%Ua^Tva?iP&ho|Y z2KUiXKa8E|#aq6jsxq$^^Tb*J(SL;p0YgmJx{N3rZlyFA-n0=Nk@o!ru}l7Qy_vK6 zn$yNps-gUN#2=&@S+O&$^`oXApOYM_q``EG43+ zGnXM+w4<@SmC$^2x}j+3WK*qF%(lCK|Hw$Zz7Ckmi6TIEb)6}toESyOCv;~9X`Sj& zzI1=RPnq?Zp~(cQiIdfkQ1e4=BsKZ{&r|Om{r*WK%C1$F1W1JBBc>^V-SygFifeIe;3xp^Zv|w zD&N{lMqebxF}YTDzepa37RQxM_6FVn2*ihHS(MH}z;fGDONK$a+;1~n_x2Du^0-k@ z8kzP|{Nu>UCDU>ldskPQmFXnA0Q$Z;mFVn*qS=0%4QJ`u%sZdL8lrQ_JY6oNM&lyn zZj`{2{Fphzd0u#(BkvlLYq}C&{!m)^T#I$j9)K(C4A*zqfDVw=KH0r^Hk27}E<0EK z+~kYR*W$xMWMU8S$KPA&zZrvgq6rX22_&>tqRjc7=AVc&p4jBPN1tZBWF$HjX;+yM zp1U(GEbxlo2-!NZZ4=mRaDg{Pwa&S(Uk`c`;pTdGEgL;AC*5unNM`chc!2b^SyJC1 z&j<7LIL%2vCmf|m8pd&@n?r9#W)p&Zvira-4hg~^o5p_^4)pvvu52Y0kgGwSiM$2V z_q9cZ+_e=bdPn*6eaCIV^TBi1knuy5(WXsnqI?d$C|x^IyiNl|G_C#T3WdVgTQ!96 zceAhV3d)fdD^y41q&vLvuK@GPIQk27H`-H1vCQs>RNcRT!X+`DgW{Gl zyw&s9(eRnAy&OB8Y3nFoGuyAwBvSZcBV%4o>B>nDwW9zrzy-M*K3U<*e?=sIMPU!X z44T&WIluZMDX$4;Q1c|6XLSqoblj6Zq8|oEDuC!+4}*yc8n>+p`v41zn-<0DFCxsY zLv15gK8O~IZVWouSBuiYLJInYFU4tVo;Yeq1r-9_tl1gM+VI}E;`gsb$?zcN_#;Vc zjYS}A05fE`G$iari%(0I!w2WnO>Jn+L@=j4#@U3nSoz5LJ8#siQ@G<7h}ZA@(OIOz zgaXODV6l`}#-O}4Ptim3rP~43av?+K!h%iT`(xb283bsK^@{6i)K+-XLu<3*GGbFr z1tg@(cJDw9%L?<%rwM7bxTk$2U#La0Sa1poOh2#^V|=M3O>9PdF3l&ZT5hQXq2hX^fIw-rMrc}w#l+cG6?Y@-Ob$I zQrO)FK@Rb*y~y1p6cWtk?>jz12hI6!8LTZwZ>@olYtW)7t{iGm@JILi(5Ui7v}-3C z4c$l{1$TKx=l1|8WT)#77^#C!R5f@X7}7n$TcJd2Lv#O|qxtTK{(&>&%K~q2itmD` zy3nXS;2Kcy=j8kyuBoorVt1OeRdneO^b8CW2et55%1kPCzxJ-g>gx43Ksvz%16Pt@ zqo23Oul7zq`zXl7TFy-qcyAciMa8gLksf4L1Cb&-{pmlP^cMo6? z&_QyxPr-~l?mi&%v5jyU9!f!T$*J@O1R#$%a7u9*RYP-@5}ZD|@gvgTHBXLGWwtQZ z$BE_Sh}aEkKgt3`J_!5yzb(5xz6`N_b;J#B1V(iX$<;Y)`_@$iiA zBk_LM0|@N-VcHMrgsMte{hT!>*@)F{tKrfq0S?GxQ=dg&j6*Gp~s8cX7wRht2ZY_OX`qLAQBz%wLT>Q5{yI)B^dCbKW{(Sz{ z*qcjxz|*rO6?b<~wIE{V5n(~R3o9(&-<34Q^%hUjy9?7Rd1k@ZT#O0pxALsIj$ByL zx8L*>q{0LRn^?J4e#5D{dXX zsS|^R4*$uTKyRbWbn8=7QKO#B2+U!q|3^r^X!=_NS!MKA9Rx`LrrRsyl-h)O$47~@ zQNA?;{E1I>EsoSvRg?&-i%tb=hy32=X=GgsxqL)*UQ&wdPDs!;OJl0K?b`*l;D^rn z%cCFvL{?HI&YN;F9+*d|19J*OPY;%zL$*0CWLdb+8q>(CVMQb`Zyz7}*925$(nLq} zj%oR;`?KpYcjUIlsi+?q}b~zl5RpK&)2ug2S@v4k4{6i`BzLo=79{E?*+~=5 zHde)ul8t?OZJs=Y@YU@>(`qAh^qv?*nfS7voH4ok_!=wYO<*p^qk$t537MLaP$}a zyn0bU+%I0$4|DoQPg&}&B+qAR)jL5CfEb*(LRX_nyr*eApMvA~d%ZVqJZ_ct9y$wI zy0}e6ikxy%Bg;V=!ovhX9VY0EMr&31mTVeanVq`66CmlZaiLTwIML%qZm$ei;v!oY z%iL7-i^a~yEJDt=r{5{M8pXT4(1_SjGW+De7cT`k9keT(dG*knGGa z77;Rj&mp?bpcr8?<{OdB;L&Y+f1rPIw<&4%x$9Xo4Kal5SQ+8suCnuKTYtsK{MdIN zERqZth#n*j0cJVLo0p;l5uK`r15E4X)=({4JzDk}?E8F?wEoE@cvn^%I| zG(?C?NP=#qW-f7lO1QtCL<>SfeRMOIef8~lGHXHqI_nBj5O%#oM@CdnM~iKs7cc%K zH0_0J{b`Ny8}SnYl*sFF|IPe_<;%7y0-;==l}KkBQjYh=3=9nRYuDU0I}$+T(8JMY zqpIW%0XVgn0JV9h>FlKme1eUO3$CsFZa!RnNjIqCV&z#w8;t``+OmJeV0C*?DXEL? zy9TNk4j-2dKR7z^n@zNT477a&6*P)=Bou7~k3$K2>_ZSX<)GVB;D&=H%^B~85rY}d zKR_=&hk~b7KPY{z1mY){vvojd#R=*D{bRS!_pugkUz=jSQvkv|uI%G7c289xSE*dT zbhHnw_}Yf5hQRwXH@z!S6J$sSwcQ71ATk8=_uccUA7PJz@?4x${^ zCs?E2l6<|P^P$`4n;SS)@6MuI)R|6(@VcEtfW5j2N1nAdvwCoUefriX^&U)M78OT! zOd|zMu|(0qJls2lxyMmLGPy@lEg{)g5(1_;=tO73T?#KlC~cX;ip#g`&{GNm0u|LE z{Ie@^%j$9~ZeGDqQ@3_BWKs-f=LK7o4^EuP6CB*YEPKs8S!+D{`GZ*?m`ePtJtFGN zZBSc5CoG=4C{xYlThc6(;1SRL{CRca)#DTm46m#^%A;R z959oI{w{8g9l?>2i6tT&SNJC4sqc9IEIbKue_6o5-J&$C=32woKuQLW`O*n9-xBZf zXSmw3$2gO>*dOUiWx;(bLwgBsyYllozq0};IKbSIXY^V zn>kmE3@GKnqxLtyHD9FT%(k?!5~5K3ks09kyh zb<^!F7&JBbY_vwyM^o}^OPo zmna+>8%7p#(hskGL9O*cG=EZEWiF9Nn%Uo ze5{uedF@3)iMX}gem*V?twLrN3a0$LZm1bJimHLRzxtIufRo7z{iZ5UsK*$*Tp)+uTv5cEe~wQ@i-y7i z5z!4DwE#Q8K+raEFxmS&&ZqAR+oAxKuCiQkE%-w2DCwLwA7-yi2lts+<|@l0{?Jo( zI$taWH9z&@74jr%e6CaNOscb-K@THJT(!u)YIt%|zB}JVKWjF!DbszN4|r)nM*KE? zoW$Yj*#~z0Wx4s)FsW!)g5cSP^GBd7p{cfi@X_4K{weE@j3Jm=nJn(mA)c-kvGy|(XI+wW`g89h?rBk=rs~x)Z?CpHa zh#t5?S>MqbfQ}66f)F1Hv@l}lY&5AGd6H-DHlu*)$k|ubh@rERk&e%qo>Iv04=V6x zUR-N@*iahHxorRq`9%LZfQe$tcP7j@!)PskRETLz28(r!aLs@g-44Y^GTWlUAU-VJ zdG~}^I{A!SHaaV|1nQorf37o&V$R9Wo1|bz^ui5mnK-4V*HdZHA3Lp3Jw7Z&@HT-l zvyRdeu(iq&jJ#duC&H)SnvjPKw3u6@vOYl-?0$0X3opOU$Q*FPGS|kySz`}q)JS3K zWH1=>d0Wyv0(}Uc)@Y25of(BixwWB1w}lB{<*il4HqrJf@cUCk)Ehb%%kSLkyL2)H za&Oy3ebE*Kae#Rd(^^k+kyGf_PK-Su(?RBwh&}NZ^^&R*D)zF|t%=zA3N-dIdgjTl z05yMYW7me;3K}z=xeTI0Sv^7k^Ll)yBB%7kc)Fl;!Ep;6AzQz4p)9O3u8nN@b8&@6 zm*m%Ehu^@SnlywGHtu6Q5@LQB;Xj7Rp3AEp)wspw#hxQn(+MHfoG95b<(DtjMrvdm z`z_=pAM}pWm6DLuXwGeExE(KJUR{dUF6(4QP#~ib8z3v5`cBMxUu<)sOqx3@I9$}T zjBLc;SiLo^kVC(EH|l1DRV=%@UQ8rLvwmVcA=E#*CVRZr+7lr87hj&g=o>S_ogA?NW0%yH=UhZcn(e4$(tMan<=x zqDlNkIE&H2b@BM^c6JKKSwC{wqr*AtK@k}7($Top)MT5!7pOJb*7 z#|zD^p|trp8#E+IMteZe1u`^E*+|YRg0@n7xsYL5x8-PduBFwP(&*ipz|R$aBPV8+ z;7tDGzTgyxYTIU&6gI@m@=!6`QqS=zp~AE)c1KPsuLdrIen8MJ2n6YanzYBF=dYYw z3#;HoMhxx71Q3pnH9SpxZ7Hl^_0A!D{>Ihtyv3$>uJK33MBbaF7j)#dFpV(Cv){fb`I$Af&OlJ9n*c# z8C-y_WbH##4~iwNS?hVsy|=><;N>5-2j<6}OaQvQ0om${Z;3{`DxfyM*y*3jxcuO) z^(!7wQo*{3QTq9w0&o%GQ7Vd>i>hf1wD#M1j#ma^hhfF#+zxA7P<&A${W=r&p`KDL z_CE8h{!qZBk!mNUHP24D@-}BfbZGnXx`A^ZTAEt7f$W-oYxwFC)f9T#+2ymdK?DT3 z6TSOc18Wi*SV82*^r0t;6|NREiuGPoyKyrj4i(nqYkitM@D;|2ZZwi3(;IyWwNh{3 zPoLgh8V!|%4ftPfW^5lKS>xTUWOiCXlEI+kVKp{NW39L*#WwE*PzjPVy6?AMubtSj zNEZnu^@6j_>`F_5*;`pRCAYWwy$lA32a0;rsh}u>=eaNOO02+7Su4dPm zalcM$eYf!4aYjlO4Y+8?z2@$FCH@Sn>}*8~J&9L@H}1rh6j**7384>}ZobB&kgb9A zhx{xAPm2+7*uZJ|JkNCNcSB^`cW>Q2lji1Stg_t&f#nG+rC5z;J{3Jxgtwd@JKcAB zt2wyNQNjCR^S~Q5!2yC6RGYGh!Ib_R`a_Qp0ZDR@@&`*H_WXZn@BEEV!WRtUjW`mXPWFypxUku3M1n%132%U#bdf zlt@|MT#9H9V1H>a)_@AW5eASec*?9|)Fw+oN2u#w-K8rx^a^43-!vc8elVS1HZ)W| z&s!pqgAqQh32tz|cWdVfezTJFlFAKH(X}Rja&QvjXXDE)p$2F4^5R}jpL|)9)NfhD z*+llKlXAL1#EX$js&{O~gLu(-fIEz>R&QtzcX+Dt}Hnz=yu!8P~eEw8mR-n#s2wsXs;4@sl^XldoXlG z?BCGyw+fZyS?gsk+?Qg#xa|eu0)z3x2Uzfa(H!su!>{V}w+dC28wDds!L=el^j0fw zde`}bqcMOmcnV||j4VcP2YxdT`{@OjAEnU@GX10E*KMYbbM-VNXj1-_DIN z_n0s7?V8yHbkvWGXfg3O;EO3sI4xgdXASO2gH}&n_F|$#SWgVAKPs7~IwNFpR3XVo>J*d#zRxy~kUp8j&n3=Hr*nKcj zLfE;K5geW0p`%S56B8tiGvP)OXcIXYlB*Kv7Ow6A^S$7<`16ix=^)z_ z6}^{56@;cn@jVtv69%Mn?r)6rJJYOsmjq>*(N86<3}A`ryxVZW0HjWu(TXHboZ(Xx zInXext!-2l=&>V9Vm{VPplMw^$6v+XyXBDzNt@ZI@VauuU?jqF*-snv_x(jPLzEGV zpDcIZ%et-xLAOt9?@lJw5SnQRiVV-pN1?`Hu+Iq-XQs(F-dFWKK zXkJJMnu$qy4>-2I8+#Ojd>v(l%7hQ9?*W0l_zsp=)K`)X%9=U$fPCS5@r5wUy7U`o zZ7Y1T`s?*Dp2&5yJH4N0VXUE^-}k6~Y@`K#zNiY`o0qBXmScrHy~3jrd=L z4*D4Q->^qSxq_l3BwhyIbHM?ZDvK@+D~{hb>fY?Oxa3Yb@xit~ zL+AwQ7w6JV?p(S{XI=l)u_QNQcX)KdNJIEzs&tUrbaTHz*ic#pCWDTU9LG}{_4kAI zmsw@VrN=HwsdeAcyhsR4T%Y#dKVr`L{czI$-qY6$o_=$C$9JO&y1HLo=HK4~ z^2H8*IcfOCF+Q9D|9acxANEiFp}sJR43nR^g##;#o``5zCWtYoh{-m;J+VAsF7ir}JBQPadkX8$}EiGam@_hDbG6bYZSu}cIe0Xs!6Wt zjd<@G*?Oz~Oc4l63asMEIvL))-M|g6TgQ|JrC8Rk@kX$x3IXS37j@Jsq1FBf*ZB!c zB$urvS~ea{Wm&VLKnWe!NrkS;n}I+Le*SBIs<(4x@B1yPr+6nXbO*nTN-yglZP&&7 znJ)0`9a3~1E{LWsE&x+jJ#VFsQ>jS0Q-%@(p_kYP^us+6P5=X zvH+E^k)OJ?a>Z-$=y8WI)NQhD27b#GvK_}5va4~0WIt8q`y;tAq-dY9pGMsdGF)(c zE9qGUEWNv8o6TKl=daA@Tn5%3dG`z5SQS5F_1};HLTkLnRj_I+7O9{g`cs`ixM&OD zbn4%-W?ci!GyGw|fj`rX@fYT*4ezf_m4x*dJpQ|0lAn5wD?~8Dkd6*ar)I<;Q}@4c zPK4sW$=$y)+do{V2ctiUC3wdbo(qJ86z`d1F!L&?US8-ZW2|aegc_77V z1NvTzPTL;P32Fl4-_V3&GC~AH4Vq|IWAg~;Gj<9%R+x8Ztd!3zmAJLDeBNykvWmJ8 zNeo#2D^Sj1fX@E2%BjE>`PU7{(b9Z7zg}qkR*pG5*4poU!IU`q4w9a^Kg*ygIQ_c=hId|UdyraX6}UP;CV%(2VMAH`{mEwYQGI;yBH-VQ zP1yMj^Tj^d9k`F{AFl=enZ|$i|MRl9y>UY&#cp62`h^3o)U*TX(AgQ@{i{e*4Ys#^ z!K+9yxc|vgMIQ549y;EQ!oV?WF^cwofw=l-3H{HQs(~}%%uMRgs#lT&w|i{}9nT~X z-%KrBiIH8JDtBlm`A``+RB3MtV8<%^(EZs(~kc(vxLN3OyCgPD_@u;y{k<5#9Lh zY+hTvW$-FH#rQnn0h%1i6mp|_+uKdh-WJWq4hk^CdZ<31WOeMJw! zRcjW3A)dC&uC(I?pLZvO9C?r;W6WN~kw=7m=DB&&*KPe~m%Hpp;AG=HDHGf( zD%l-p8vI=Do^aLw{CX_E;HPRNvIby;ri|pR`m{V zbtX<-ibK$LdeC?&#CY^>fe%}_WBx0c&h7ixr|?1uaK!QG@hgnv4JMchV4YXNV^gc( z0d=Vkob^u0q&^|;s-Qb&mK-P8WNJ@ELP@7T&{20R20k3&L1;~y%P*ahmMc5IFoAvd z@uf`e7n3%lYbSFL_Z2Gjy^LO^UpXZfO(d!cDiehK|3ITcB+vg1k5) zDG5ZMp{2t}tYkh--HVVLzvp32@bD9z0Tz@6 z&s~O&E*?%M25$%uJ?a3dayteKHlO*77h*-kdVt{gl6!&a{>w-4PrtZZY~%SYkOT zw4DuRgvK|AB77j@axTaAfH?WFR^*X^JpfKUZ5N%(`z$keDP9@Y{pRzkaqvLduwPc{ zz^EP{Me0=^xic@=8gI;~SDlEzPQg<(DFUt95*6sOx%<9+m)&oPJMY!;f*@u6*=z6p z^#>ql%~c$#G%2Ld2ibGo!7^+ZB@?A_5LguJ4Xm!fW~4B`M#7@{tQ2BWL^72^lDjZs zp!O#I3IW!gPs6HMqEE&$y`q>9IS^0g@rEbkp*qxX+((Y)aRW70m^CLQt(ep>a4)ew z>JfYBg0#xvHkuT^oRJ9Il7iVzf244DQhRyC|6YZml)u(wsprIu=F8B#eG_fZti&pNtJvWPl&CDOd?{L|q0DttW-{tht0I0UxEQ4yC27ttJ?Ig5A!hMb zkkZkV_Tx);qDcFTbRr84`nkD^IIa>mvbyh2cW!XWWSGA_8gyFqe8Ht-%vUfrPbLO& z%sh(?v1dt9$14;j2bZf8IXU^ApU2*3d)z9>_rK-CKj$4!7~cor$hkZDXmel)Wa`DQ zrnSh`XbWT}_n8)Zq{>;py&#fBc{%xv>hud4jjF4+3Xf4^-}LKAq{7hF6R0*r@N1<_ zI5%rfc@p%CJ9J!0>{hrrNGVz(NfU1C;a8y2KOjjQmgBg^iUrgWdGqTEEyF Zj@G|9zJEBJ``_mSi0}U+UO@Kx{|^zi&5r;8 diff --git a/plotly/tests/test_orca/images/linux/latexfig.jpg b/plotly/tests/test_orca/images/linux/latexfig.jpg deleted file mode 100644 index d64be03fe20691e21fb82dd7f391afd2b9bd7936..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 26550 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 Zj@G|9zJEBJ``_mSi0}U+UO@Kx{|^zi&5r;8 diff --git a/plotly/tests/test_orca/images/linux/latexfig.png b/plotly/tests/test_orca/images/linux/latexfig.png deleted file mode 100644 index 7e0480556fa5aab8153b272cb5637bb57cc3ee98..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 33523 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 J0L;tc{{V9(@LvD` diff --git a/plotly/tests/test_orca/images/linux/topofig.jpg b/plotly/tests/test_orca/images/linux/topofig.jpg deleted file mode 100644 index bce04dfcf0570e1be3f2f2f002f01e28f449c55e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 20607 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 J0L;tc{{V9(@LvD` diff --git a/plotly/tests/test_orca/images/linux/topofig.png b/plotly/tests/test_orca/images/linux/topofig.png deleted file mode 100644 index a779cf80121e2a01544651e2ff7eafd9309b8e44..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 40276 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Ô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 diff --git a/plotly/tests/test_orca/images/linux/topofig.webp b/plotly/tests/test_orca/images/linux/topofig.webp deleted file mode 100644 index e7b1f7a817450e49adaa3d3145ca7a7fdc46fe80..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5604 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 V4kO9Is-nu_4S_9n|M4M*`UmOd&;9@a diff --git a/plotly/tests/test_orca/test_to_image.py b/plotly/tests/test_orca/test_to_image.py index fc456bf490f..7eb5d8d84b7 100644 --- a/plotly/tests/test_orca/test_to_image.py +++ b/plotly/tests/test_orca/test_to_image.py @@ -28,7 +28,7 @@ failed_dir = images_dir + 'failed/' tmp_dir = images_dir + 'tmp/' # These formats are deterministic. PDF and svg don't seem to be -image_formats = ['png', 'jpg', 'jpeg', 'webp', 'eps'] +image_formats = ['eps'] topo_df = pd.read_csv('plotly/tests/test_orca/resources/2011_us_ag_exports.csv') # Fixtures @@ -260,12 +260,12 @@ def test_write_image_string_bad_extension_override(fig1): file_name = 'fig1.bogus' tmp_path = tmp_dir + file_name - pio.write_image(fig1, tmp_path, format='jpg', width=700, height=500) + pio.write_image(fig1, tmp_path, format='eps', width=700, height=500) with open(tmp_path, 'rb') as f: written_bytes = f.read() - with open(images_dir + 'fig1.jpg', 'rb') as f: + with open(images_dir + 'fig1.eps', 'rb') as f: expected_bytes = f.read() assert written_bytes == expected_bytes From 76a69cb85b1b2f700327cc3005226aba48c93d15 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Mon, 15 Oct 2018 06:17:05 -0400 Subject: [PATCH 27/34] Added xgrid template to re-enable to xgrid lines that are off by default in the plotly_* templates --- plotly/io/_templates.py | 2 +- plotly/package_data/templates/xgrid.json | 1 + templategen/definitions.py | 18 ++++++++++++++++++ 3 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 plotly/package_data/templates/xgrid.json diff --git a/plotly/io/_templates.py b/plotly/io/_templates.py index 2941a6c8512..c3f3a20bd89 100644 --- a/plotly/io/_templates.py +++ b/plotly/io/_templates.py @@ -40,7 +40,7 @@ def __init__(self): # Initialize built-in templates default_templates = ['ggplot2', 'seaborn', 'plotly', 'plotly_white', - 'plotly_dark', 'presentation'] + 'plotly_dark', 'presentation', 'xgrid'] for template_name in default_templates: self._templates[template_name] = Lazy diff --git a/plotly/package_data/templates/xgrid.json b/plotly/package_data/templates/xgrid.json new file mode 100644 index 00000000000..f7a5b374f05 --- /dev/null +++ b/plotly/package_data/templates/xgrid.json @@ -0,0 +1 @@ +{"layout": {"xaxis": {"showgrid": true}}} \ No newline at end of file diff --git a/templategen/definitions.py b/templategen/definitions.py index 7a5d542ce8f..859f5aa27b3 100644 --- a/templategen/definitions.py +++ b/templategen/definitions.py @@ -499,3 +499,21 @@ def presentation(): builders['presentation'] = presentation + + +def xgrid(): + """ + Tempalate to enable x-grid by default (this is not enabled by defualt in + the plotly_* templates) + Returns + ------- + + """ + # Create blank template + template = Template() + template.layout.xaxis.showgrid = True + + return template + + +builders['xgrid'] = xgrid \ No newline at end of file From 58143dac85ef871e31a25c5e3c9d3504f203cf64 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Mon, 15 Oct 2018 18:18:02 -0400 Subject: [PATCH 28/34] Leave x-grid on by default in all templates and add xgridoff template that can be added to turn it off if desired. --- plotly/io/_templates.py | 2 +- plotly/package_data/templates/ggplot2.json | 2 +- plotly/package_data/templates/plotly.json | 2 +- .../package_data/templates/plotly_dark.json | 2 +- .../package_data/templates/plotly_white.json | 2 +- plotly/package_data/templates/seaborn.json | 2 +- plotly/package_data/templates/xgrid.json | 1 - plotly/package_data/templates/xgridoff.json | 1 + templategen/definitions.py | 31 +++++++++---------- 9 files changed, 21 insertions(+), 24 deletions(-) delete mode 100644 plotly/package_data/templates/xgrid.json create mode 100644 plotly/package_data/templates/xgridoff.json diff --git a/plotly/io/_templates.py b/plotly/io/_templates.py index c3f3a20bd89..5ff6a1a0536 100644 --- a/plotly/io/_templates.py +++ b/plotly/io/_templates.py @@ -40,7 +40,7 @@ def __init__(self): # Initialize built-in templates default_templates = ['ggplot2', 'seaborn', 'plotly', 'plotly_white', - 'plotly_dark', 'presentation', 'xgrid'] + 'plotly_dark', 'presentation', 'xgridoff'] for template_name in default_templates: self._templates[template_name] = Lazy diff --git a/plotly/package_data/templates/ggplot2.json b/plotly/package_data/templates/ggplot2.json index b1c3679f163..526134d875d 100644 --- a/plotly/package_data/templates/ggplot2.json +++ b/plotly/package_data/templates/ggplot2.json @@ -1 +1 @@ -{"layout": {"colorway": ["#F8766D", "#A3A500", "#00BF7D", "#00B0F6", "#E76BF3"], "font": {"color": "rgb(51,51,51)"}, "paper_bgcolor": "white", "plot_bgcolor": "rgb(237,237,237)", "polar": {"bgcolor": "rgb(237,237,237)", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "ternary": {"bgcolor": "rgb(237,237,237)", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "black", "line": {"width": 0}, "opacity": 0.3}, "annotationdefaults": {"arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "rgb(237,237,237)", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "choropleth": [{"type": "choropleth", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmap": [{"type": "heatmap", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contour": [{"type": "contour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "surface": [{"type": "surface", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false}, "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "carpet": [{"aaxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "baxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "rgb(237,237,237)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(217,217,217)"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["#F8766D", "#A3A500", "#00BF7D", "#00B0F6", "#E76BF3"], "font": {"color": "rgb(51,51,51)"}, "paper_bgcolor": "white", "plot_bgcolor": "rgb(237,237,237)", "polar": {"bgcolor": "rgb(237,237,237)", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "ternary": {"bgcolor": "rgb(237,237,237)", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside"}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white", "gridwidth": 2}, "yaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white", "gridwidth": 2}, "zaxis": {"backgroundcolor": "rgb(237,237,237)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "tickcolor": "rgb(51,51,51)", "ticks": "outside", "zerolinecolor": "white", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "black", "line": {"width": 0}, "opacity": 0.3}, "annotationdefaults": {"arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "rgb(237,237,237)", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "choropleth": [{"type": "choropleth", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmap": [{"type": "heatmap", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "contour": [{"type": "contour", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "surface": [{"type": "surface", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false}, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false}, "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0, "rgb(20,44,66)"], [1, "rgb(90,179,244)"]], "autocolorscale": false, "colorbar": {"len": 0.2, "outlinewidth": 0, "tickcolor": "rgb(237,237,237)", "ticklen": 6, "ticks": "inside"}}}], "carpet": [{"aaxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "baxis": {"endlinecolor": "rgb(51,51,51)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "rgb(237,237,237)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(217,217,217)"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/plotly.json b/plotly/package_data/templates/plotly.json index 235cbc717d2..fcff267056a 100644 --- a/plotly/package_data/templates/plotly.json +++ b/plotly/package_data/templates/plotly.json @@ -1 +1 @@ -{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "#DFE8F3", "polar": {"bgcolor": "#DFE8F3", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "#DFE8F3", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": false, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "yaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "zaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "#DFE8F3", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "#DFE8F3", "polar": {"bgcolor": "#DFE8F3", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "#DFE8F3", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "yaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "zaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "#DFE8F3", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/plotly_dark.json b/plotly/package_data/templates/plotly_dark.json index f349c40c390..381f0ed8130 100644 --- a/plotly/package_data/templates/plotly_dark.json +++ b/plotly/package_data/templates/plotly_dark.json @@ -1 +1 @@ -{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#f2f5fa"}, "paper_bgcolor": "rgb(17,17,17)", "plot_bgcolor": "rgb(17,17,17)", "polar": {"bgcolor": "rgb(17,17,17)", "angularaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "rgb(17,17,17)", "aaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": false, "ticks": "", "zerolinecolor": "#C8D4E3"}, "yaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3"}, "scene": {"xaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "yaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "zaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#f2f5fa", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#f2f5fa", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "subunitcolor": "#A2B1C6", "showland": true, "showlakes": true, "lakecolor": "rgb(17,17,17)"}, "updatemenudefaults": {"bgcolor": "#506784", "borderwidth": 0}, "sliderdefaults": {"bgcolor": "#C8D4E3", "borderwidth": 1, "bordercolor": "rgb(17,17,17)", "tickwidth": 0}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#A2B1C6", "linecolor": "#A2B1C6", "minorgridcolor": "#A2B1C6", "startlinecolor": "#A2B1C6"}, "baxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#A2B1C6", "linecolor": "#A2B1C6", "minorgridcolor": "#A2B1C6", "startlinecolor": "#A2B1C6"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#506784"}, "line": {"color": "rgb(17,17,17)"}}, "header": {"fill": {"color": "#2a3f5f"}, "line": {"color": "rgb(17,17,17)"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#f2f5fa"}, "paper_bgcolor": "rgb(17,17,17)", "plot_bgcolor": "rgb(17,17,17)", "polar": {"bgcolor": "rgb(17,17,17)", "angularaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "rgb(17,17,17)", "aaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3"}, "yaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3"}, "scene": {"xaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "yaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "zaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#f2f5fa", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#f2f5fa", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "subunitcolor": "#A2B1C6", "showland": true, "showlakes": true, "lakecolor": "rgb(17,17,17)"}, "updatemenudefaults": {"bgcolor": "#506784", "borderwidth": 0}, "sliderdefaults": {"bgcolor": "#C8D4E3", "borderwidth": 1, "bordercolor": "rgb(17,17,17)", "tickwidth": 0}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#A2B1C6", "linecolor": "#A2B1C6", "minorgridcolor": "#A2B1C6", "startlinecolor": "#A2B1C6"}, "baxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#A2B1C6", "linecolor": "#A2B1C6", "minorgridcolor": "#A2B1C6", "startlinecolor": "#A2B1C6"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#506784"}, "line": {"color": "rgb(17,17,17)"}}, "header": {"fill": {"color": "#2a3f5f"}, "line": {"color": "rgb(17,17,17)"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/plotly_white.json b/plotly/package_data/templates/plotly_white.json index 3159ba62412..d2c8e1cfeca 100644 --- a/plotly/package_data/templates/plotly_white.json +++ b/plotly/package_data/templates/plotly_white.json @@ -1 +1 @@ -{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "white", "polar": {"bgcolor": "white", "angularaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "white", "aaxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": false, "ticks": "", "zerolinecolor": "#A2B1C6"}, "yaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6"}, "scene": {"xaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}, "yaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}, "zaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "white", "subunitcolor": "#C8D4E3", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "white", "polar": {"bgcolor": "white", "angularaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "white", "aaxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6"}, "yaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6"}, "scene": {"xaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}, "yaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}, "zaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "white", "subunitcolor": "#C8D4E3", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/seaborn.json b/plotly/package_data/templates/seaborn.json index 9a031077d95..637657f88fa 100644 --- a/plotly/package_data/templates/seaborn.json +++ b/plotly/package_data/templates/seaborn.json @@ -1 +1 @@ -{"layout": {"colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"bgcolor": "rgb(234,234,242)", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "rgb(234,234,242)", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "geo": {"bgcolor": "white", "landcolor": "rgb(234,234,242)", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "contour": [{"type": "contour", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "surface": [{"type": "surface", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"bgcolor": "rgb(234,234,242)", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "rgb(234,234,242)", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "geo": {"bgcolor": "white", "landcolor": "rgb(234,234,242)", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "contour": [{"type": "contour", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "surface": [{"type": "surface", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/xgrid.json b/plotly/package_data/templates/xgrid.json deleted file mode 100644 index f7a5b374f05..00000000000 --- a/plotly/package_data/templates/xgrid.json +++ /dev/null @@ -1 +0,0 @@ -{"layout": {"xaxis": {"showgrid": true}}} \ No newline at end of file diff --git a/plotly/package_data/templates/xgridoff.json b/plotly/package_data/templates/xgridoff.json new file mode 100644 index 00000000000..9ebcc718e4d --- /dev/null +++ b/plotly/package_data/templates/xgridoff.json @@ -0,0 +1 @@ +{"layout": {"xaxis": {"showgrid": false}}} \ No newline at end of file diff --git a/templategen/definitions.py b/templategen/definitions.py index 859f5aa27b3..fe82d273023 100644 --- a/templategen/definitions.py +++ b/templategen/definitions.py @@ -69,6 +69,11 @@ def ggplot2(): shape_defaults=shape_defaults ) + # Increase grid width for 3d plots + template.layout.scene.xaxis.gridwidth = 2 + template.layout.scene.yaxis.gridwidth = 2 + template.layout.scene.zaxis.gridwidth = 2 + return template @@ -167,6 +172,11 @@ def seaborn(): shape_defaults=shape_defaults ) + # Increase grid width for 3d plots + template.layout.scene.xaxis.gridwidth = 2 + template.layout.scene.yaxis.gridwidth = 2 + template.layout.scene.zaxis.gridwidth = 2 + # Set table header font color to white return template @@ -269,9 +279,6 @@ def plotly(): shape_defaults=shape_defaults ) - # disable vertical grid lines in 2D cartesian x-axis - template.layout.xaxis.showgrid = False - # Increase grid width for 3d plots template.layout.scene.xaxis.gridwidth = 2 template.layout.scene.yaxis.gridwidth = 2 @@ -350,9 +357,6 @@ def plotly_white(): shape_defaults=shape_defaults ) - # disable vertical grid lines in 2D cartesian x-axis - template.layout.xaxis.showgrid = False - # Increase grid width for 3d plots opts = dict(gridwidth=2, gridcolor=plotly_clrs['Rhino Light 1']) template.layout.scene.xaxis.update(opts) @@ -439,9 +443,6 @@ def plotly_dark(): shape_defaults=shape_defaults ) - # disable vertical grid lines in 2D cartesian x-axis - template.layout.xaxis.showgrid = False - # Increase grid width for 3d plots template.layout.scene.xaxis.gridwidth = 2 template.layout.scene.yaxis.gridwidth = 2 @@ -501,19 +502,15 @@ def presentation(): builders['presentation'] = presentation -def xgrid(): +def xgridoff(): """ - Tempalate to enable x-grid by default (this is not enabled by defualt in - the plotly_* templates) - Returns - ------- - + Tempalate to disable x-grid by default """ # Create blank template template = Template() - template.layout.xaxis.showgrid = True + template.layout.xaxis.showgrid = False return template -builders['xgrid'] = xgrid \ No newline at end of file +builders['xgridoff'] = xgridoff \ No newline at end of file From 3222b67c82069bf0c5b06dba590ab2aec33a52f7 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Mon, 22 Oct 2018 09:28:23 -0400 Subject: [PATCH 29/34] Template refinements with interpolated colors - Slightly lighten background grid in plotly template - Slightly darken grid lines in plotly_dark template - Don't explicitly enable xgrid/ygrid in plotly* templates, let plotly.js decide. --- plotly/package_data/templates/plotly.json | 2 +- .../package_data/templates/plotly_dark.json | 2 +- .../package_data/templates/plotly_white.json | 2 +- templategen/definitions.py | 27 +++++++++++++------ 4 files changed, 22 insertions(+), 11 deletions(-) diff --git a/plotly/package_data/templates/plotly.json b/plotly/package_data/templates/plotly.json index fcff267056a..91c0476d80f 100644 --- a/plotly/package_data/templates/plotly.json +++ b/plotly/package_data/templates/plotly.json @@ -1 +1 @@ -{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "#DFE8F3", "polar": {"bgcolor": "#DFE8F3", "angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "#DFE8F3", "aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "yaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "zaxis": {"backgroundcolor": "#DFE8F3", "gridcolor": "white", "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "#DFE8F3", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"bgcolor": "#E5ECF6", "angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "ternary": {"bgcolor": "#E5ECF6", "aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "#E5ECF6", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/plotly_dark.json b/plotly/package_data/templates/plotly_dark.json index 381f0ed8130..7b3ef4a3627 100644 --- a/plotly/package_data/templates/plotly_dark.json +++ b/plotly/package_data/templates/plotly_dark.json @@ -1 +1 @@ -{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#f2f5fa"}, "paper_bgcolor": "rgb(17,17,17)", "plot_bgcolor": "rgb(17,17,17)", "polar": {"bgcolor": "rgb(17,17,17)", "angularaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "rgb(17,17,17)", "aaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3"}, "yaxis": {"gridcolor": "#506784", "linecolor": "#506784", "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3"}, "scene": {"xaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "yaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "zaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#f2f5fa", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#f2f5fa", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "subunitcolor": "#A2B1C6", "showland": true, "showlakes": true, "lakecolor": "rgb(17,17,17)"}, "updatemenudefaults": {"bgcolor": "#506784", "borderwidth": 0}, "sliderdefaults": {"bgcolor": "#C8D4E3", "borderwidth": 1, "bordercolor": "rgb(17,17,17)", "tickwidth": 0}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#A2B1C6", "linecolor": "#A2B1C6", "minorgridcolor": "#A2B1C6", "startlinecolor": "#A2B1C6"}, "baxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#A2B1C6", "linecolor": "#A2B1C6", "minorgridcolor": "#A2B1C6", "startlinecolor": "#A2B1C6"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#506784"}, "line": {"color": "rgb(17,17,17)"}}, "header": {"fill": {"color": "#2a3f5f"}, "line": {"color": "rgb(17,17,17)"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#f2f5fa"}, "paper_bgcolor": "rgb(17,17,17)", "plot_bgcolor": "rgb(17,17,17)", "polar": {"bgcolor": "rgb(17,17,17)", "angularaxis": {"gridcolor": "#506784", "linecolor": "#506784", "ticks": ""}, "radialaxis": {"gridcolor": "#506784", "linecolor": "#506784", "ticks": ""}}, "ternary": {"bgcolor": "rgb(17,17,17)", "aaxis": {"gridcolor": "#506784", "linecolor": "#506784", "ticks": ""}, "baxis": {"gridcolor": "#506784", "linecolor": "#506784", "ticks": ""}, "caxis": {"gridcolor": "#506784", "linecolor": "#506784", "ticks": ""}}, "xaxis": {"gridcolor": "#283442", "linecolor": "#506784", "ticks": "", "zerolinecolor": "#C8D4E3"}, "yaxis": {"gridcolor": "#283442", "linecolor": "#506784", "ticks": "", "zerolinecolor": "#C8D4E3"}, "scene": {"xaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "yaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "zaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#f2f5fa", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#f2f5fa", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "subunitcolor": "#506784", "showland": true, "showlakes": true, "lakecolor": "rgb(17,17,17)"}, "updatemenudefaults": {"bgcolor": "#506784", "borderwidth": 0}, "sliderdefaults": {"bgcolor": "#C8D4E3", "borderwidth": 1, "bordercolor": "rgb(17,17,17)", "tickwidth": 0}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#506784", "linecolor": "#506784", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6"}, "baxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#506784", "linecolor": "#506784", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#506784"}, "line": {"color": "rgb(17,17,17)"}}, "header": {"fill": {"color": "#2a3f5f"}, "line": {"color": "rgb(17,17,17)"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/plotly_white.json b/plotly/package_data/templates/plotly_white.json index d2c8e1cfeca..2c1a4611e4a 100644 --- a/plotly/package_data/templates/plotly_white.json +++ b/plotly/package_data/templates/plotly_white.json @@ -1 +1 @@ -{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "white", "polar": {"bgcolor": "white", "angularaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": ""}, "radialaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": ""}}, "ternary": {"bgcolor": "white", "aaxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}, "caxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "showgrid": true, "ticks": ""}}, "xaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6"}, "yaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6"}, "scene": {"xaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}, "yaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}, "zaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "white", "subunitcolor": "#C8D4E3", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "white", "polar": {"bgcolor": "white", "angularaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "ticks": ""}, "radialaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "ticks": ""}}, "ternary": {"bgcolor": "white", "aaxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "ticks": ""}, "baxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "ticks": ""}, "caxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "ticks": ""}}, "xaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "ticks": "", "zerolinecolor": "#A2B1C6"}, "yaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "ticks": "", "zerolinecolor": "#A2B1C6"}, "scene": {"xaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}, "yaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}, "zaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "white", "subunitcolor": "#C8D4E3", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/templategen/definitions.py b/templategen/definitions.py index fe82d273023..aeb6183feff 100644 --- a/templategen/definitions.py +++ b/templategen/definitions.py @@ -205,6 +205,16 @@ def seaborn(): 'Sienna': '#EF553B' } +# ## Add interpolated theme colors +# +# Interpolate from Rhino Dark to 0.5 of the way toward Black +# https://meyerweb.com/eric/tools/color-blend/#506784:000000:1:hex +plotly_clrs['Rhino Darker'] = '#283442' + +# https://meyerweb.com/eric/tools/color-blend/#DFE8F3:EBF0F8:1:hex +plotly_clrs['Rhino Light 1.5'] = '#E5ECF6' + + bmw_subset = cc.b_linear_bmw_5_95_c86[50:230] linear_bmw_5_95_c86_n256 = [ [i/(len(bmw_subset)-1), clr] for i, clr in enumerate(bmw_subset) @@ -241,7 +251,6 @@ def plotly(): # Common axis common properties axis_common = dict( - showgrid=True, gridcolor='white', linecolor='white', ticks='') @@ -264,7 +273,7 @@ def plotly(): template = initialize_template( paper_clr='white', font_clr=plotly_clrs['Rhino Core'], - panel_background_clr=plotly_clrs['Rhino Light 1'], + panel_background_clr=plotly_clrs['Rhino Light 1.5'], panel_grid_clr='white', axis_ticks_clr=plotly_clrs['Rhino Core'], zerolinecolor_clr='white', @@ -319,7 +328,6 @@ def plotly_white(): # Common axis common properties axis_common = dict( - showgrid=True, gridcolor=plotly_clrs['Rhino Light 2'], linecolor=plotly_clrs['Rhino Light 2'], ticks='') @@ -404,10 +412,10 @@ def plotly_dark(): ticks='') # Common axis common properties + grid_color = plotly_clrs['Rhino Dark'] axis_common = dict( - showgrid=True, - gridcolor=plotly_clrs['Rhino Dark'], - linecolor=plotly_clrs['Rhino Dark'], + gridcolor=grid_color, + linecolor=grid_color, ticks='') # semi-transparent black and no outline @@ -422,14 +430,13 @@ def plotly_dark(): 'arrowcolor': annotation_clr, 'arrowhead': 0, 'arrowwidth': 1 - } template = initialize_template( paper_clr=jupyterlab_output_clr, font_clr=plotly_clrs['Rhino Light 4'], panel_background_clr=jupyterlab_output_clr, - panel_grid_clr=plotly_clrs['Rhino Medium 1'], + panel_grid_clr=grid_color, axis_ticks_clr=plotly_clrs['Rhino Medium 1'], zerolinecolor_clr=plotly_clrs['Rhino Medium 2'], table_cell_clr=plotly_clrs['Rhino Dark'], @@ -458,6 +465,10 @@ def plotly_dark(): template.layout.sliderdefaults.bordercolor = 'rgb(17,17,17)' template.layout.sliderdefaults.tickwidth = 0 + # Darken cartesian grid lines a little more + template.layout.xaxis.gridcolor = plotly_clrs['Rhino Darker'] + template.layout.yaxis.gridcolor = plotly_clrs['Rhino Darker'] + # Set table header font color to white return template From ee318c6664f802c7ceaf354c27257f87747e31ac Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Mon, 22 Oct 2018 18:27:48 -0400 Subject: [PATCH 30/34] Initialize fig.layout.template in BaseFigure constructor This way fig.layout.template won't be None after Figure is constructed --- plotly/basedatatypes.py | 8 +++++--- plotly/tests/test_core/test_graph_objs/test_template.py | 4 ++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/plotly/basedatatypes.py b/plotly/basedatatypes.py index 6ef21c7cab0..c60ad0135c2 100644 --- a/plotly/basedatatypes.py +++ b/plotly/basedatatypes.py @@ -240,9 +240,11 @@ class is a subclass of both BaseFigure and widgets.DOMWidget. # -------- # ### Check for default template ### import plotly.io as pio - if (self._layout_obj.template is None and - pio.templates.default is not None): - self._layout_obj.template = pio.templates.default + if self._layout_obj.template is None: + if pio.templates.default is not None: + self._layout_obj.template = pio.templates.default + else: + self._layout_obj.template = {} # Magic Methods # ------------- diff --git a/plotly/tests/test_core/test_graph_objs/test_template.py b/plotly/tests/test_core/test_graph_objs/test_template.py index 532c923b7ae..7e863e00bd1 100644 --- a/plotly/tests/test_core/test_graph_objs/test_template.py +++ b/plotly/tests/test_core/test_graph_objs/test_template.py @@ -26,7 +26,7 @@ def tearDown(self): # ------------------------- def test_starts_as_none(self): fig = go.Figure() - self.assertIsNone(fig.layout.template) + self.assertEqual(fig.layout.template, go.layout.Template()) def test_init_in_figure_constructor(self): fig = go.Figure(layout={ @@ -127,7 +127,7 @@ def test_template_as_name_constructor(self): def test_template_as_name_assignment(self): fig = go.Figure() - self.assertIsNone(fig.layout.template) + self.assertEqual(fig.layout.template, go.layout.Template()) fig.layout.template = 'test_template' self.assertEqual(fig.layout.template, pio.templates['test_template']) From bc0ca2a8d2c979bff50abd5e52dad2412c006095 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Mon, 22 Oct 2018 19:28:11 -0400 Subject: [PATCH 31/34] Cleanup templategen colors module --- templategen/utils/colors.py | 1126 +++++++++++++++++------------------ 1 file changed, 563 insertions(+), 563 deletions(-) diff --git a/templategen/utils/colors.py b/templategen/utils/colors.py index cacf74dede5..8131dd86aa5 100644 --- a/templategen/utils/colors.py +++ b/templategen/utils/colors.py @@ -1,573 +1,573 @@ -"""Provide RGB color constants and a colors dictionary with +""" +Provide RGB color constants and a colors dictionary with elements formatted: colors[colorname] = CONSTANT -From: +Used https://www.webucator.com/blog/2015/03/python-color-constants-module/ as +a starting point, but it doesn't bear much resemblance to this any more. """ -colors = {} #dict of colors +colors = {} + + +def rgb_str(red, green, blue): + return 'rgb({},{},{})'.format(red, green, blue) -def RGB(red, green, blue): - '''Returns color in hex format''' - # return '#{:02X}{:02X}{:02X}'.format(red, green, blue) - return 'rgb({},{},{})'.format(red, green, blue) -#Color Contants -ALICEBLUE = RGB(240, 248, 255) -ANTIQUEWHITE = RGB(250, 235, 215) -ANTIQUEWHITE1 = RGB(255, 239, 219) -ANTIQUEWHITE2 = RGB(238, 223, 204) -ANTIQUEWHITE3 = RGB(205, 192, 176) -ANTIQUEWHITE4 = RGB(139, 131, 120) -AQUA = RGB(0, 255, 255) -AQUAMARINE1 = RGB(127, 255, 212) -AQUAMARINE2 = RGB(118, 238, 198) -AQUAMARINE3 = RGB(102, 205, 170) -AQUAMARINE4 = RGB(69, 139, 116) -AZURE1 = RGB(240, 255, 255) -AZURE2 = RGB(224, 238, 238) -AZURE3 = RGB(193, 205, 205) -AZURE4 = RGB(131, 139, 139) -BANANA = RGB(227, 207, 87) -BEIGE = RGB(245, 245, 220) -BISQUE1 = RGB(255, 228, 196) -BISQUE2 = RGB(238, 213, 183) -BISQUE3 = RGB(205, 183, 158) -BISQUE4 = RGB(139, 125, 107) -BLACK = RGB(0, 0, 0) -BLANCHEDALMOND = RGB(255, 235, 205) -BLUE = RGB(0, 0, 255) -BLUE2 = RGB(0, 0, 238) -BLUE3 = RGB(0, 0, 205) -BLUE4 = RGB(0, 0, 139) -BLUEVIOLET = RGB(138, 43, 226) -BRICK = RGB(156, 102, 31) -BROWN = RGB(165, 42, 42) -BROWN1 = RGB(255, 64, 64) -BROWN2 = RGB(238, 59, 59) -BROWN3 = RGB(205, 51, 51) -BROWN4 = RGB(139, 35, 35) -BURLYWOOD = RGB(222, 184, 135) -BURLYWOOD1 = RGB(255, 211, 155) -BURLYWOOD2 = RGB(238, 197, 145) -BURLYWOOD3 = RGB(205, 170, 125) -BURLYWOOD4 = RGB(139, 115, 85) -BURNTSIENNA = RGB(138, 54, 15) -BURNTUMBER = RGB(138, 51, 36) -CADETBLUE = RGB(95, 158, 160) -CADETBLUE1 = RGB(152, 245, 255) -CADETBLUE2 = RGB(142, 229, 238) -CADETBLUE3 = RGB(122, 197, 205) -CADETBLUE4 = RGB(83, 134, 139) -CADMIUMORANGE = RGB(255, 97, 3) -CADMIUMYELLOW = RGB(255, 153, 18) -CARROT = RGB(237, 145, 33) -CHARTREUSE1 = RGB(127, 255, 0) -CHARTREUSE2 = RGB(118, 238, 0) -CHARTREUSE3 = RGB(102, 205, 0) -CHARTREUSE4 = RGB(69, 139, 0) -CHOCOLATE = RGB(210, 105, 30) -CHOCOLATE1 = RGB(255, 127, 36) -CHOCOLATE2 = RGB(238, 118, 33) -CHOCOLATE3 = RGB(205, 102, 29) -CHOCOLATE4 = RGB(139, 69, 19) -COBALT = RGB(61, 89, 171) -COBALTGREEN = RGB(61, 145, 64) -COLDGREY = RGB(128, 138, 135) -CORAL = RGB(255, 127, 80) -CORAL1 = RGB(255, 114, 86) -CORAL2 = RGB(238, 106, 80) -CORAL3 = RGB(205, 91, 69) -CORAL4 = RGB(139, 62, 47) -CORNFLOWERBLUE = RGB(100, 149, 237) -CORNSILK1 = RGB(255, 248, 220) -CORNSILK2 = RGB(238, 232, 205) -CORNSILK3 = RGB(205, 200, 177) -CORNSILK4 = RGB(139, 136, 120) -CRIMSON = RGB(220, 20, 60) -CYAN2 = RGB(0, 238, 238) -CYAN3 = RGB(0, 205, 205) -CYAN4 = RGB(0, 139, 139) -DARKGOLDENROD = RGB(184, 134, 11) -DARKGOLDENROD1 = RGB(255, 185, 15) -DARKGOLDENROD2 = RGB(238, 173, 14) -DARKGOLDENROD3 = RGB(205, 149, 12) -DARKGOLDENROD4 = RGB(139, 101, 8) -DARKGRAY = RGB(169, 169, 169) -DARKGREEN = RGB(0, 100, 0) -DARKKHAKI = RGB(189, 183, 107) -DARKOLIVEGREEN = RGB(85, 107, 47) -DARKOLIVEGREEN1 = RGB(202, 255, 112) -DARKOLIVEGREEN2 = RGB(188, 238, 104) -DARKOLIVEGREEN3 = RGB(162, 205, 90) -DARKOLIVEGREEN4 = RGB(110, 139, 61) -DARKORANGE = RGB(255, 140, 0) -DARKORANGE1 = RGB(255, 127, 0) -DARKORANGE2 = RGB(238, 118, 0) -DARKORANGE3 = RGB(205, 102, 0) -DARKORANGE4 = RGB(139, 69, 0) -DARKORCHID = RGB(153, 50, 204) -DARKORCHID1 = RGB(191, 62, 255) -DARKORCHID2 = RGB(178, 58, 238) -DARKORCHID3 = RGB(154, 50, 205) -DARKORCHID4 = RGB(104, 34, 139) -DARKSALMON = RGB(233, 150, 122) -DARKSEAGREEN = RGB(143, 188, 143) -DARKSEAGREEN1 = RGB(193, 255, 193) -DARKSEAGREEN2 = RGB(180, 238, 180) -DARKSEAGREEN3 = RGB(155, 205, 155) -DARKSEAGREEN4 = RGB(105, 139, 105) -DARKSLATEBLUE = RGB(72, 61, 139) -DARKSLATEGRAY = RGB(47, 79, 79) -DARKSLATEGRAY1 = RGB(151, 255, 255) -DARKSLATEGRAY2 = RGB(141, 238, 238) -DARKSLATEGRAY3 = RGB(121, 205, 205) -DARKSLATEGRAY4 = RGB(82, 139, 139) -DARKTURQUOISE = RGB(0, 206, 209) -DARKVIOLET = RGB(148, 0, 211) -DEEPPINK1 = RGB(255, 20, 147) -DEEPPINK2 = RGB(238, 18, 137) -DEEPPINK3 = RGB(205, 16, 118) -DEEPPINK4 = RGB(139, 10, 80) -DEEPSKYBLUE1 = RGB(0, 191, 255) -DEEPSKYBLUE2 = RGB(0, 178, 238) -DEEPSKYBLUE3 = RGB(0, 154, 205) -DEEPSKYBLUE4 = RGB(0, 104, 139) -DIMGRAY = RGB(105, 105, 105) -DIMGRAY = RGB(105, 105, 105) -DODGERBLUE1 = RGB(30, 144, 255) -DODGERBLUE2 = RGB(28, 134, 238) -DODGERBLUE3 = RGB(24, 116, 205) -DODGERBLUE4 = RGB(16, 78, 139) -EGGSHELL = RGB(252, 230, 201) -EMERALDGREEN = RGB(0, 201, 87) -FIREBRICK = RGB(178, 34, 34) -FIREBRICK1 = RGB(255, 48, 48) -FIREBRICK2 = RGB(238, 44, 44) -FIREBRICK3 = RGB(205, 38, 38) -FIREBRICK4 = RGB(139, 26, 26) -FLESH = RGB(255, 125, 64) -FLORALWHITE = RGB(255, 250, 240) -FORESTGREEN = RGB(34, 139, 34) -GAINSBORO = RGB(220, 220, 220) -GHOSTWHITE = RGB(248, 248, 255) -GOLD1 = RGB(255, 215, 0) -GOLD2 = RGB(238, 201, 0) -GOLD3 = RGB(205, 173, 0) -GOLD4 = RGB(139, 117, 0) -GOLDENROD = RGB(218, 165, 32) -GOLDENROD1 = RGB(255, 193, 37) -GOLDENROD2 = RGB(238, 180, 34) -GOLDENROD3 = RGB(205, 155, 29) -GOLDENROD4 = RGB(139, 105, 20) -GRAY = RGB(128, 128, 128) -GRAY1 = RGB(3, 3, 3) -GRAY10 = RGB(26, 26, 26) -GRAY11 = RGB(28, 28, 28) -GRAY12 = RGB(31, 31, 31) -GRAY13 = RGB(33, 33, 33) -GRAY14 = RGB(36, 36, 36) -GRAY15 = RGB(38, 38, 38) -GRAY16 = RGB(41, 41, 41) -GRAY17 = RGB(43, 43, 43) -GRAY18 = RGB(46, 46, 46) -GRAY19 = RGB(48, 48, 48) -GRAY2 = RGB(5, 5, 5) -GRAY20 = RGB(51, 51, 51) -GRAY21 = RGB(54, 54, 54) -GRAY22 = RGB(56, 56, 56) -GRAY23 = RGB(59, 59, 59) -GRAY24 = RGB(61, 61, 61) -GRAY25 = RGB(64, 64, 64) -GRAY26 = RGB(66, 66, 66) -GRAY27 = RGB(69, 69, 69) -GRAY28 = RGB(71, 71, 71) -GRAY29 = RGB(74, 74, 74) -GRAY3 = RGB(8, 8, 8) -GRAY30 = RGB(77, 77, 77) -GRAY31 = RGB(79, 79, 79) -GRAY32 = RGB(82, 82, 82) -GRAY33 = RGB(84, 84, 84) -GRAY34 = RGB(87, 87, 87) -GRAY35 = RGB(89, 89, 89) -GRAY36 = RGB(92, 92, 92) -GRAY37 = RGB(94, 94, 94) -GRAY38 = RGB(97, 97, 97) -GRAY39 = RGB(99, 99, 99) -GRAY4 = RGB(10, 10, 10) -GRAY40 = RGB(102, 102, 102) -GRAY42 = RGB(107, 107, 107) -GRAY43 = RGB(110, 110, 110) -GRAY44 = RGB(112, 112, 112) -GRAY45 = RGB(115, 115, 115) -GRAY46 = RGB(117, 117, 117) -GRAY47 = RGB(120, 120, 120) -GRAY48 = RGB(122, 122, 122) -GRAY49 = RGB(125, 125, 125) -GRAY5 = RGB(13, 13, 13) -GRAY50 = RGB(127, 127, 127) -GRAY51 = RGB(130, 130, 130) -GRAY52 = RGB(133, 133, 133) -GRAY53 = RGB(135, 135, 135) -GRAY54 = RGB(138, 138, 138) -GRAY55 = RGB(140, 140, 140) -GRAY56 = RGB(143, 143, 143) -GRAY57 = RGB(145, 145, 145) -GRAY58 = RGB(148, 148, 148) -GRAY59 = RGB(150, 150, 150) -GRAY6 = RGB(15, 15, 15) -GRAY60 = RGB(153, 153, 153) -GRAY61 = RGB(156, 156, 156) -GRAY62 = RGB(158, 158, 158) -GRAY63 = RGB(161, 161, 161) -GRAY64 = RGB(163, 163, 163) -GRAY65 = RGB(166, 166, 166) -GRAY66 = RGB(168, 168, 168) -GRAY67 = RGB(171, 171, 171) -GRAY68 = RGB(173, 173, 173) -GRAY69 = RGB(176, 176, 176) -GRAY7 = RGB(18, 18, 18) -GRAY70 = RGB(179, 179, 179) -GRAY71 = RGB(181, 181, 181) -GRAY72 = RGB(184, 184, 184) -GRAY73 = RGB(186, 186, 186) -GRAY74 = RGB(189, 189, 189) -GRAY75 = RGB(191, 191, 191) -GRAY76 = RGB(194, 194, 194) -GRAY77 = RGB(196, 196, 196) -GRAY78 = RGB(199, 199, 199) -GRAY79 = RGB(201, 201, 201) -GRAY8 = RGB(20, 20, 20) -GRAY80 = RGB(204, 204, 204) -GRAY81 = RGB(207, 207, 207) -GRAY82 = RGB(209, 209, 209) -GRAY83 = RGB(212, 212, 212) -GRAY84 = RGB(214, 214, 214) -GRAY85 = RGB(217, 217, 217) -GRAY86 = RGB(219, 219, 219) -GRAY87 = RGB(222, 222, 222) -GRAY88 = RGB(224, 224, 224) -GRAY89 = RGB(227, 227, 227) -GRAY9 = RGB(23, 23, 23) -GRAY90 = RGB(229, 229, 229) -GRAY91 = RGB(232, 232, 232) -GRAY92 = RGB(235, 235, 235) -GRAY93 = RGB(237, 237, 237) -GRAY94 = RGB(240, 240, 240) -GRAY95 = RGB(242, 242, 242) -GRAY97 = RGB(247, 247, 247) -GRAY98 = RGB(250, 250, 250) -GRAY99 = RGB(252, 252, 252) -GREEN = RGB(0, 128, 0) -GREEN1 = RGB(0, 255, 0) -GREEN2 = RGB(0, 238, 0) -GREEN3 = RGB(0, 205, 0) -GREEN4 = RGB(0, 139, 0) -GREENYELLOW = RGB(173, 255, 47) -HONEYDEW1 = RGB(240, 255, 240) -HONEYDEW2 = RGB(224, 238, 224) -HONEYDEW3 = RGB(193, 205, 193) -HONEYDEW4 = RGB(131, 139, 131) -HOTPINK = RGB(255, 105, 180) -HOTPINK1 = RGB(255, 110, 180) -HOTPINK2 = RGB(238, 106, 167) -HOTPINK3 = RGB(205, 96, 144) -HOTPINK4 = RGB(139, 58, 98) -INDIANRED = RGB(176, 23, 31) -INDIANRED = RGB(205, 92, 92) -INDIANRED1 = RGB(255, 106, 106) -INDIANRED2 = RGB(238, 99, 99) -INDIANRED3 = RGB(205, 85, 85) -INDIANRED4 = RGB(139, 58, 58) -INDIGO = RGB(75, 0, 130) -IVORY1 = RGB(255, 255, 240) -IVORY2 = RGB(238, 238, 224) -IVORY3 = RGB(205, 205, 193) -IVORY4 = RGB(139, 139, 131) -IVORYBLACK = RGB(41, 36, 33) -KHAKI = RGB(240, 230, 140) -KHAKI1 = RGB(255, 246, 143) -KHAKI2 = RGB(238, 230, 133) -KHAKI3 = RGB(205, 198, 115) -KHAKI4 = RGB(139, 134, 78) -LAVENDER = RGB(230, 230, 250) -LAVENDERBLUSH1 = RGB(255, 240, 245) -LAVENDERBLUSH2 = RGB(238, 224, 229) -LAVENDERBLUSH3 = RGB(205, 193, 197) -LAVENDERBLUSH4 = RGB(139, 131, 134) -LAWNGREEN = RGB(124, 252, 0) -LEMONCHIFFON1 = RGB(255, 250, 205) -LEMONCHIFFON2 = RGB(238, 233, 191) -LEMONCHIFFON3 = RGB(205, 201, 165) -LEMONCHIFFON4 = RGB(139, 137, 112) -LIGHTBLUE = RGB(173, 216, 230) -LIGHTBLUE1 = RGB(191, 239, 255) -LIGHTBLUE2 = RGB(178, 223, 238) -LIGHTBLUE3 = RGB(154, 192, 205) -LIGHTBLUE4 = RGB(104, 131, 139) -LIGHTCORAL = RGB(240, 128, 128) -LIGHTCYAN1 = RGB(224, 255, 255) -LIGHTCYAN2 = RGB(209, 238, 238) -LIGHTCYAN3 = RGB(180, 205, 205) -LIGHTCYAN4 = RGB(122, 139, 139) -LIGHTGOLDENROD1 = RGB(255, 236, 139) -LIGHTGOLDENROD2 = RGB(238, 220, 130) -LIGHTGOLDENROD3 = RGB(205, 190, 112) -LIGHTGOLDENROD4 = RGB(139, 129, 76) -LIGHTGOLDENRODYELLOW = RGB(250, 250, 210) -LIGHTGREY = RGB(211, 211, 211) -LIGHTPINK = RGB(255, 182, 193) -LIGHTPINK1 = RGB(255, 174, 185) -LIGHTPINK2 = RGB(238, 162, 173) -LIGHTPINK3 = RGB(205, 140, 149) -LIGHTPINK4 = RGB(139, 95, 101) -LIGHTSALMON1 = RGB(255, 160, 122) -LIGHTSALMON2 = RGB(238, 149, 114) -LIGHTSALMON3 = RGB(205, 129, 98) -LIGHTSALMON4 = RGB(139, 87, 66) -LIGHTSEAGREEN = RGB(32, 178, 170) -LIGHTSKYBLUE = RGB(135, 206, 250) -LIGHTSKYBLUE1 = RGB(176, 226, 255) -LIGHTSKYBLUE2 = RGB(164, 211, 238) -LIGHTSKYBLUE3 = RGB(141, 182, 205) -LIGHTSKYBLUE4 = RGB(96, 123, 139) -LIGHTSLATEBLUE = RGB(132, 112, 255) -LIGHTSLATEGRAY = RGB(119, 136, 153) -LIGHTSTEELBLUE = RGB(176, 196, 222) -LIGHTSTEELBLUE1 = RGB(202, 225, 255) -LIGHTSTEELBLUE2 = RGB(188, 210, 238) -LIGHTSTEELBLUE3 = RGB(162, 181, 205) -LIGHTSTEELBLUE4 = RGB(110, 123, 139) -LIGHTYELLOW1 = RGB(255, 255, 224) -LIGHTYELLOW2 = RGB(238, 238, 209) -LIGHTYELLOW3 = RGB(205, 205, 180) -LIGHTYELLOW4 = RGB(139, 139, 122) -LIMEGREEN = RGB(50, 205, 50) -LINEN = RGB(250, 240, 230) -MAGENTA = RGB(255, 0, 255) -MAGENTA2 = RGB(238, 0, 238) -MAGENTA3 = RGB(205, 0, 205) -MAGENTA4 = RGB(139, 0, 139) -MANGANESEBLUE = RGB(3, 168, 158) -MAROON = RGB(128, 0, 0) -MAROON1 = RGB(255, 52, 179) -MAROON2 = RGB(238, 48, 167) -MAROON3 = RGB(205, 41, 144) -MAROON4 = RGB(139, 28, 98) -MEDIUMORCHID = RGB(186, 85, 211) -MEDIUMORCHID1 = RGB(224, 102, 255) -MEDIUMORCHID2 = RGB(209, 95, 238) -MEDIUMORCHID3 = RGB(180, 82, 205) -MEDIUMORCHID4 = RGB(122, 55, 139) -MEDIUMPURPLE = RGB(147, 112, 219) -MEDIUMPURPLE1 = RGB(171, 130, 255) -MEDIUMPURPLE2 = RGB(159, 121, 238) -MEDIUMPURPLE3 = RGB(137, 104, 205) -MEDIUMPURPLE4 = RGB(93, 71, 139) -MEDIUMSEAGREEN = RGB(60, 179, 113) -MEDIUMSLATEBLUE = RGB(123, 104, 238) -MEDIUMSPRINGGREEN = RGB(0, 250, 154) -MEDIUMTURQUOISE = RGB(72, 209, 204) -MEDIUMVIOLETRED = RGB(199, 21, 133) -MELON = RGB(227, 168, 105) -MIDNIGHTBLUE = RGB(25, 25, 112) -MINT = RGB(189, 252, 201) -MINTCREAM = RGB(245, 255, 250) -MISTYROSE1 = RGB(255, 228, 225) -MISTYROSE2 = RGB(238, 213, 210) -MISTYROSE3 = RGB(205, 183, 181) -MISTYROSE4 = RGB(139, 125, 123) -MOCCASIN = RGB(255, 228, 181) -NAVAJOWHITE1 = RGB(255, 222, 173) -NAVAJOWHITE2 = RGB(238, 207, 161) -NAVAJOWHITE3 = RGB(205, 179, 139) -NAVAJOWHITE4 = RGB(139, 121, 94) -NAVY = RGB(0, 0, 128) -OLDLACE = RGB(253, 245, 230) -OLIVE = RGB(128, 128, 0) -OLIVEDRAB = RGB(107, 142, 35) -OLIVEDRAB1 = RGB(192, 255, 62) -OLIVEDRAB2 = RGB(179, 238, 58) -OLIVEDRAB3 = RGB(154, 205, 50) -OLIVEDRAB4 = RGB(105, 139, 34) -ORANGE = RGB(255, 128, 0) -ORANGE1 = RGB(255, 165, 0) -ORANGE2 = RGB(238, 154, 0) -ORANGE3 = RGB(205, 133, 0) -ORANGE4 = RGB(139, 90, 0) -ORANGERED1 = RGB(255, 69, 0) -ORANGERED2 = RGB(238, 64, 0) -ORANGERED3 = RGB(205, 55, 0) -ORANGERED4 = RGB(139, 37, 0) -ORCHID = RGB(218, 112, 214) -ORCHID1 = RGB(255, 131, 250) -ORCHID2 = RGB(238, 122, 233) -ORCHID3 = RGB(205, 105, 201) -ORCHID4 = RGB(139, 71, 137) -PALEGOLDENROD = RGB(238, 232, 170) -PALEGREEN = RGB(152, 251, 152) -PALEGREEN1 = RGB(154, 255, 154) -PALEGREEN2 = RGB(144, 238, 144) -PALEGREEN3 = RGB(124, 205, 124) -PALEGREEN4 = RGB(84, 139, 84) -PALETURQUOISE1 = RGB(187, 255, 255) -PALETURQUOISE2 = RGB(174, 238, 238) -PALETURQUOISE3 = RGB(150, 205, 205) -PALETURQUOISE4 = RGB(102, 139, 139) -PALEVIOLETRED = RGB(219, 112, 147) -PALEVIOLETRED1 = RGB(255, 130, 171) -PALEVIOLETRED2 = RGB(238, 121, 159) -PALEVIOLETRED3 = RGB(205, 104, 137) -PALEVIOLETRED4 = RGB(139, 71, 93) -PAPAYAWHIP = RGB(255, 239, 213) -PEACHPUFF1 = RGB(255, 218, 185) -PEACHPUFF2 = RGB(238, 203, 173) -PEACHPUFF3 = RGB(205, 175, 149) -PEACHPUFF4 = RGB(139, 119, 101) -PEACOCK = RGB(51, 161, 201) -PINK = RGB(255, 192, 203) -PINK1 = RGB(255, 181, 197) -PINK2 = RGB(238, 169, 184) -PINK3 = RGB(205, 145, 158) -PINK4 = RGB(139, 99, 108) -PLUM = RGB(221, 160, 221) -PLUM1 = RGB(255, 187, 255) -PLUM2 = RGB(238, 174, 238) -PLUM3 = RGB(205, 150, 205) -PLUM4 = RGB(139, 102, 139) -POWDERBLUE = RGB(176, 224, 230) -PURPLE = RGB(128, 0, 128) -PURPLE1 = RGB(155, 48, 255) -PURPLE2 = RGB(145, 44, 238) -PURPLE3 = RGB(125, 38, 205) -PURPLE4 = RGB(85, 26, 139) -RASPBERRY = RGB(135, 38, 87) -RAWSIENNA = RGB(199, 97, 20) -RED1 = RGB(255, 0, 0) -RED2 = RGB(238, 0, 0) -RED3 = RGB(205, 0, 0) -RED4 = RGB(139, 0, 0) -ROSYBROWN = RGB(188, 143, 143) -ROSYBROWN1 = RGB(255, 193, 193) -ROSYBROWN2 = RGB(238, 180, 180) -ROSYBROWN3 = RGB(205, 155, 155) -ROSYBROWN4 = RGB(139, 105, 105) -ROYALBLUE = RGB(65, 105, 225) -ROYALBLUE1 = RGB(72, 118, 255) -ROYALBLUE2 = RGB(67, 110, 238) -ROYALBLUE3 = RGB(58, 95, 205) -ROYALBLUE4 = RGB(39, 64, 139) -SALMON = RGB(250, 128, 114) -SALMON1 = RGB(255, 140, 105) -SALMON2 = RGB(238, 130, 98) -SALMON3 = RGB(205, 112, 84) -SALMON4 = RGB(139, 76, 57) -SANDYBROWN = RGB(244, 164, 96) -SAPGREEN = RGB(48, 128, 20) -SEAGREEN1 = RGB(84, 255, 159) -SEAGREEN2 = RGB(78, 238, 148) -SEAGREEN3 = RGB(67, 205, 128) -SEAGREEN4 = RGB(46, 139, 87) -SEASHELL1 = RGB(255, 245, 238) -SEASHELL2 = RGB(238, 229, 222) -SEASHELL3 = RGB(205, 197, 191) -SEASHELL4 = RGB(139, 134, 130) -SEPIA = RGB(94, 38, 18) -SGIBEET = RGB(142, 56, 142) -SGIBRIGHTGRAY = RGB(197, 193, 170) -SGICHARTREUSE = RGB(113, 198, 113) -SGIDARKGRAY = RGB(85, 85, 85) -SGIGRAY12 = RGB(30, 30, 30) -SGIGRAY16 = RGB(40, 40, 40) -SGIGRAY32 = RGB(81, 81, 81) -SGIGRAY36 = RGB(91, 91, 91) -SGIGRAY52 = RGB(132, 132, 132) -SGIGRAY56 = RGB(142, 142, 142) -SGIGRAY72 = RGB(183, 183, 183) -SGIGRAY76 = RGB(193, 193, 193) -SGIGRAY92 = RGB(234, 234, 234) -SGIGRAY96 = RGB(244, 244, 244) -SGILIGHTBLUE = RGB(125, 158, 192) -SGILIGHTGRAY = RGB(170, 170, 170) -SGIOLIVEDRAB = RGB(142, 142, 56) -SGISALMON = RGB(198, 113, 113) -SGISLATEBLUE = RGB(113, 113, 198) -SGITEAL = RGB(56, 142, 142) -SIENNA = RGB(160, 82, 45) -SIENNA1 = RGB(255, 130, 71) -SIENNA2 = RGB(238, 121, 66) -SIENNA3 = RGB(205, 104, 57) -SIENNA4 = RGB(139, 71, 38) -SILVER = RGB(192, 192, 192) -SKYBLUE = RGB(135, 206, 235) -SKYBLUE1 = RGB(135, 206, 255) -SKYBLUE2 = RGB(126, 192, 238) -SKYBLUE3 = RGB(108, 166, 205) -SKYBLUE4 = RGB(74, 112, 139) -SLATEBLUE = RGB(106, 90, 205) -SLATEBLUE1 = RGB(131, 111, 255) -SLATEBLUE2 = RGB(122, 103, 238) -SLATEBLUE3 = RGB(105, 89, 205) -SLATEBLUE4 = RGB(71, 60, 139) -SLATEGRAY = RGB(112, 128, 144) -SLATEGRAY1 = RGB(198, 226, 255) -SLATEGRAY2 = RGB(185, 211, 238) -SLATEGRAY3 = RGB(159, 182, 205) -SLATEGRAY4 = RGB(108, 123, 139) -SNOW1 = RGB(255, 250, 250) -SNOW2 = RGB(238, 233, 233) -SNOW3 = RGB(205, 201, 201) -SNOW4 = RGB(139, 137, 137) -SPRINGGREEN = RGB(0, 255, 127) -SPRINGGREEN1 = RGB(0, 238, 118) -SPRINGGREEN2 = RGB(0, 205, 102) -SPRINGGREEN3 = RGB(0, 139, 69) -STEELBLUE = RGB(70, 130, 180) -STEELBLUE1 = RGB(99, 184, 255) -STEELBLUE2 = RGB(92, 172, 238) -STEELBLUE3 = RGB(79, 148, 205) -STEELBLUE4 = RGB(54, 100, 139) -TAN = RGB(210, 180, 140) -TAN1 = RGB(255, 165, 79) -TAN2 = RGB(238, 154, 73) -TAN3 = RGB(205, 133, 63) -TAN4 = RGB(139, 90, 43) -TEAL = RGB(0, 128, 128) -THISTLE = RGB(216, 191, 216) -THISTLE1 = RGB(255, 225, 255) -THISTLE2 = RGB(238, 210, 238) -THISTLE3 = RGB(205, 181, 205) -THISTLE4 = RGB(139, 123, 139) -TOMATO1 = RGB(255, 99, 71) -TOMATO2 = RGB(238, 92, 66) -TOMATO3 = RGB(205, 79, 57) -TOMATO4 = RGB(139, 54, 38) -TURQUOISE = RGB(64, 224, 208) -TURQUOISE1 = RGB(0, 245, 255) -TURQUOISE2 = RGB(0, 229, 238) -TURQUOISE3 = RGB(0, 197, 205) -TURQUOISE4 = RGB(0, 134, 139) -TURQUOISEBLUE = RGB(0, 199, 140) -VIOLET = RGB(238, 130, 238) -VIOLETRED = RGB(208, 32, 144) -VIOLETRED1 = RGB(255, 62, 150) -VIOLETRED2 = RGB(238, 58, 140) -VIOLETRED3 = RGB(205, 50, 120) -VIOLETRED4 = RGB(139, 34, 82) -WARMGREY = RGB(128, 128, 105) -WHEAT = RGB(245, 222, 179) -WHEAT1 = RGB(255, 231, 186) -WHEAT2 = RGB(238, 216, 174) -WHEAT3 = RGB(205, 186, 150) -WHEAT4 = RGB(139, 126, 102) -WHITE = RGB(255, 255, 255) -WHITESMOKE = RGB(245, 245, 245) -WHITESMOKE = RGB(245, 245, 245) -YELLOW1 = RGB(255, 255, 0) -YELLOW2 = RGB(238, 238, 0) -YELLOW3 = RGB(205, 205, 0) -YELLOW4 = RGB(139, 139, 0) +ALICEBLUE = rgb_str(240, 248, 255) +ANTIQUEWHITE = rgb_str(250, 235, 215) +ANTIQUEWHITE1 = rgb_str(255, 239, 219) +ANTIQUEWHITE2 = rgb_str(238, 223, 204) +ANTIQUEWHITE3 = rgb_str(205, 192, 176) +ANTIQUEWHITE4 = rgb_str(139, 131, 120) +AQUA = rgb_str(0, 255, 255) +AQUAMARINE1 = rgb_str(127, 255, 212) +AQUAMARINE2 = rgb_str(118, 238, 198) +AQUAMARINE3 = rgb_str(102, 205, 170) +AQUAMARINE4 = rgb_str(69, 139, 116) +AZURE1 = rgb_str(240, 255, 255) +AZURE2 = rgb_str(224, 238, 238) +AZURE3 = rgb_str(193, 205, 205) +AZURE4 = rgb_str(131, 139, 139) +BANANA = rgb_str(227, 207, 87) +BEIGE = rgb_str(245, 245, 220) +BISQUE1 = rgb_str(255, 228, 196) +BISQUE2 = rgb_str(238, 213, 183) +BISQUE3 = rgb_str(205, 183, 158) +BISQUE4 = rgb_str(139, 125, 107) +BLACK = rgb_str(0, 0, 0) +BLANCHEDALMOND = rgb_str(255, 235, 205) +BLUE = rgb_str(0, 0, 255) +BLUE2 = rgb_str(0, 0, 238) +BLUE3 = rgb_str(0, 0, 205) +BLUE4 = rgb_str(0, 0, 139) +BLUEVIOLET = rgb_str(138, 43, 226) +BRICK = rgb_str(156, 102, 31) +BROWN = rgb_str(165, 42, 42) +BROWN1 = rgb_str(255, 64, 64) +BROWN2 = rgb_str(238, 59, 59) +BROWN3 = rgb_str(205, 51, 51) +BROWN4 = rgb_str(139, 35, 35) +BURLYWOOD = rgb_str(222, 184, 135) +BURLYWOOD1 = rgb_str(255, 211, 155) +BURLYWOOD2 = rgb_str(238, 197, 145) +BURLYWOOD3 = rgb_str(205, 170, 125) +BURLYWOOD4 = rgb_str(139, 115, 85) +BURNTSIENNA = rgb_str(138, 54, 15) +BURNTUMBER = rgb_str(138, 51, 36) +CADETBLUE = rgb_str(95, 158, 160) +CADETBLUE1 = rgb_str(152, 245, 255) +CADETBLUE2 = rgb_str(142, 229, 238) +CADETBLUE3 = rgb_str(122, 197, 205) +CADETBLUE4 = rgb_str(83, 134, 139) +CADMIUMORANGE = rgb_str(255, 97, 3) +CADMIUMYELLOW = rgb_str(255, 153, 18) +CARROT = rgb_str(237, 145, 33) +CHARTREUSE1 = rgb_str(127, 255, 0) +CHARTREUSE2 = rgb_str(118, 238, 0) +CHARTREUSE3 = rgb_str(102, 205, 0) +CHARTREUSE4 = rgb_str(69, 139, 0) +CHOCOLATE = rgb_str(210, 105, 30) +CHOCOLATE1 = rgb_str(255, 127, 36) +CHOCOLATE2 = rgb_str(238, 118, 33) +CHOCOLATE3 = rgb_str(205, 102, 29) +CHOCOLATE4 = rgb_str(139, 69, 19) +COBALT = rgb_str(61, 89, 171) +COBALTGREEN = rgb_str(61, 145, 64) +COLDGREY = rgb_str(128, 138, 135) +CORAL = rgb_str(255, 127, 80) +CORAL1 = rgb_str(255, 114, 86) +CORAL2 = rgb_str(238, 106, 80) +CORAL3 = rgb_str(205, 91, 69) +CORAL4 = rgb_str(139, 62, 47) +CORNFLOWERBLUE = rgb_str(100, 149, 237) +CORNSILK1 = rgb_str(255, 248, 220) +CORNSILK2 = rgb_str(238, 232, 205) +CORNSILK3 = rgb_str(205, 200, 177) +CORNSILK4 = rgb_str(139, 136, 120) +CRIMSON = rgb_str(220, 20, 60) +CYAN2 = rgb_str(0, 238, 238) +CYAN3 = rgb_str(0, 205, 205) +CYAN4 = rgb_str(0, 139, 139) +DARKGOLDENROD = rgb_str(184, 134, 11) +DARKGOLDENROD1 = rgb_str(255, 185, 15) +DARKGOLDENROD2 = rgb_str(238, 173, 14) +DARKGOLDENROD3 = rgb_str(205, 149, 12) +DARKGOLDENROD4 = rgb_str(139, 101, 8) +DARKGRAY = rgb_str(169, 169, 169) +DARKGREEN = rgb_str(0, 100, 0) +DARKKHAKI = rgb_str(189, 183, 107) +DARKOLIVEGREEN = rgb_str(85, 107, 47) +DARKOLIVEGREEN1 = rgb_str(202, 255, 112) +DARKOLIVEGREEN2 = rgb_str(188, 238, 104) +DARKOLIVEGREEN3 = rgb_str(162, 205, 90) +DARKOLIVEGREEN4 = rgb_str(110, 139, 61) +DARKORANGE = rgb_str(255, 140, 0) +DARKORANGE1 = rgb_str(255, 127, 0) +DARKORANGE2 = rgb_str(238, 118, 0) +DARKORANGE3 = rgb_str(205, 102, 0) +DARKORANGE4 = rgb_str(139, 69, 0) +DARKORCHID = rgb_str(153, 50, 204) +DARKORCHID1 = rgb_str(191, 62, 255) +DARKORCHID2 = rgb_str(178, 58, 238) +DARKORCHID3 = rgb_str(154, 50, 205) +DARKORCHID4 = rgb_str(104, 34, 139) +DARKSALMON = rgb_str(233, 150, 122) +DARKSEAGREEN = rgb_str(143, 188, 143) +DARKSEAGREEN1 = rgb_str(193, 255, 193) +DARKSEAGREEN2 = rgb_str(180, 238, 180) +DARKSEAGREEN3 = rgb_str(155, 205, 155) +DARKSEAGREEN4 = rgb_str(105, 139, 105) +DARKSLATEBLUE = rgb_str(72, 61, 139) +DARKSLATEGRAY = rgb_str(47, 79, 79) +DARKSLATEGRAY1 = rgb_str(151, 255, 255) +DARKSLATEGRAY2 = rgb_str(141, 238, 238) +DARKSLATEGRAY3 = rgb_str(121, 205, 205) +DARKSLATEGRAY4 = rgb_str(82, 139, 139) +DARKTURQUOISE = rgb_str(0, 206, 209) +DARKVIOLET = rgb_str(148, 0, 211) +DEEPPINK1 = rgb_str(255, 20, 147) +DEEPPINK2 = rgb_str(238, 18, 137) +DEEPPINK3 = rgb_str(205, 16, 118) +DEEPPINK4 = rgb_str(139, 10, 80) +DEEPSKYBLUE1 = rgb_str(0, 191, 255) +DEEPSKYBLUE2 = rgb_str(0, 178, 238) +DEEPSKYBLUE3 = rgb_str(0, 154, 205) +DEEPSKYBLUE4 = rgb_str(0, 104, 139) +DIMGRAY = rgb_str(105, 105, 105) +DIMGRAY = rgb_str(105, 105, 105) +DODGERBLUE1 = rgb_str(30, 144, 255) +DODGERBLUE2 = rgb_str(28, 134, 238) +DODGERBLUE3 = rgb_str(24, 116, 205) +DODGERBLUE4 = rgb_str(16, 78, 139) +EGGSHELL = rgb_str(252, 230, 201) +EMERALDGREEN = rgb_str(0, 201, 87) +FIREBRICK = rgb_str(178, 34, 34) +FIREBRICK1 = rgb_str(255, 48, 48) +FIREBRICK2 = rgb_str(238, 44, 44) +FIREBRICK3 = rgb_str(205, 38, 38) +FIREBRICK4 = rgb_str(139, 26, 26) +FLESH = rgb_str(255, 125, 64) +FLORALWHITE = rgb_str(255, 250, 240) +FORESTGREEN = rgb_str(34, 139, 34) +GAINSBORO = rgb_str(220, 220, 220) +GHOSTWHITE = rgb_str(248, 248, 255) +GOLD1 = rgb_str(255, 215, 0) +GOLD2 = rgb_str(238, 201, 0) +GOLD3 = rgb_str(205, 173, 0) +GOLD4 = rgb_str(139, 117, 0) +GOLDENROD = rgb_str(218, 165, 32) +GOLDENROD1 = rgb_str(255, 193, 37) +GOLDENROD2 = rgb_str(238, 180, 34) +GOLDENROD3 = rgb_str(205, 155, 29) +GOLDENROD4 = rgb_str(139, 105, 20) +GRAY = rgb_str(128, 128, 128) +GRAY1 = rgb_str(3, 3, 3) +GRAY10 = rgb_str(26, 26, 26) +GRAY11 = rgb_str(28, 28, 28) +GRAY12 = rgb_str(31, 31, 31) +GRAY13 = rgb_str(33, 33, 33) +GRAY14 = rgb_str(36, 36, 36) +GRAY15 = rgb_str(38, 38, 38) +GRAY16 = rgb_str(41, 41, 41) +GRAY17 = rgb_str(43, 43, 43) +GRAY18 = rgb_str(46, 46, 46) +GRAY19 = rgb_str(48, 48, 48) +GRAY2 = rgb_str(5, 5, 5) +GRAY20 = rgb_str(51, 51, 51) +GRAY21 = rgb_str(54, 54, 54) +GRAY22 = rgb_str(56, 56, 56) +GRAY23 = rgb_str(59, 59, 59) +GRAY24 = rgb_str(61, 61, 61) +GRAY25 = rgb_str(64, 64, 64) +GRAY26 = rgb_str(66, 66, 66) +GRAY27 = rgb_str(69, 69, 69) +GRAY28 = rgb_str(71, 71, 71) +GRAY29 = rgb_str(74, 74, 74) +GRAY3 = rgb_str(8, 8, 8) +GRAY30 = rgb_str(77, 77, 77) +GRAY31 = rgb_str(79, 79, 79) +GRAY32 = rgb_str(82, 82, 82) +GRAY33 = rgb_str(84, 84, 84) +GRAY34 = rgb_str(87, 87, 87) +GRAY35 = rgb_str(89, 89, 89) +GRAY36 = rgb_str(92, 92, 92) +GRAY37 = rgb_str(94, 94, 94) +GRAY38 = rgb_str(97, 97, 97) +GRAY39 = rgb_str(99, 99, 99) +GRAY4 = rgb_str(10, 10, 10) +GRAY40 = rgb_str(102, 102, 102) +GRAY42 = rgb_str(107, 107, 107) +GRAY43 = rgb_str(110, 110, 110) +GRAY44 = rgb_str(112, 112, 112) +GRAY45 = rgb_str(115, 115, 115) +GRAY46 = rgb_str(117, 117, 117) +GRAY47 = rgb_str(120, 120, 120) +GRAY48 = rgb_str(122, 122, 122) +GRAY49 = rgb_str(125, 125, 125) +GRAY5 = rgb_str(13, 13, 13) +GRAY50 = rgb_str(127, 127, 127) +GRAY51 = rgb_str(130, 130, 130) +GRAY52 = rgb_str(133, 133, 133) +GRAY53 = rgb_str(135, 135, 135) +GRAY54 = rgb_str(138, 138, 138) +GRAY55 = rgb_str(140, 140, 140) +GRAY56 = rgb_str(143, 143, 143) +GRAY57 = rgb_str(145, 145, 145) +GRAY58 = rgb_str(148, 148, 148) +GRAY59 = rgb_str(150, 150, 150) +GRAY6 = rgb_str(15, 15, 15) +GRAY60 = rgb_str(153, 153, 153) +GRAY61 = rgb_str(156, 156, 156) +GRAY62 = rgb_str(158, 158, 158) +GRAY63 = rgb_str(161, 161, 161) +GRAY64 = rgb_str(163, 163, 163) +GRAY65 = rgb_str(166, 166, 166) +GRAY66 = rgb_str(168, 168, 168) +GRAY67 = rgb_str(171, 171, 171) +GRAY68 = rgb_str(173, 173, 173) +GRAY69 = rgb_str(176, 176, 176) +GRAY7 = rgb_str(18, 18, 18) +GRAY70 = rgb_str(179, 179, 179) +GRAY71 = rgb_str(181, 181, 181) +GRAY72 = rgb_str(184, 184, 184) +GRAY73 = rgb_str(186, 186, 186) +GRAY74 = rgb_str(189, 189, 189) +GRAY75 = rgb_str(191, 191, 191) +GRAY76 = rgb_str(194, 194, 194) +GRAY77 = rgb_str(196, 196, 196) +GRAY78 = rgb_str(199, 199, 199) +GRAY79 = rgb_str(201, 201, 201) +GRAY8 = rgb_str(20, 20, 20) +GRAY80 = rgb_str(204, 204, 204) +GRAY81 = rgb_str(207, 207, 207) +GRAY82 = rgb_str(209, 209, 209) +GRAY83 = rgb_str(212, 212, 212) +GRAY84 = rgb_str(214, 214, 214) +GRAY85 = rgb_str(217, 217, 217) +GRAY86 = rgb_str(219, 219, 219) +GRAY87 = rgb_str(222, 222, 222) +GRAY88 = rgb_str(224, 224, 224) +GRAY89 = rgb_str(227, 227, 227) +GRAY9 = rgb_str(23, 23, 23) +GRAY90 = rgb_str(229, 229, 229) +GRAY91 = rgb_str(232, 232, 232) +GRAY92 = rgb_str(235, 235, 235) +GRAY93 = rgb_str(237, 237, 237) +GRAY94 = rgb_str(240, 240, 240) +GRAY95 = rgb_str(242, 242, 242) +GRAY97 = rgb_str(247, 247, 247) +GRAY98 = rgb_str(250, 250, 250) +GRAY99 = rgb_str(252, 252, 252) +GREEN = rgb_str(0, 128, 0) +GREEN1 = rgb_str(0, 255, 0) +GREEN2 = rgb_str(0, 238, 0) +GREEN3 = rgb_str(0, 205, 0) +GREEN4 = rgb_str(0, 139, 0) +GREENYELLOW = rgb_str(173, 255, 47) +HONEYDEW1 = rgb_str(240, 255, 240) +HONEYDEW2 = rgb_str(224, 238, 224) +HONEYDEW3 = rgb_str(193, 205, 193) +HONEYDEW4 = rgb_str(131, 139, 131) +HOTPINK = rgb_str(255, 105, 180) +HOTPINK1 = rgb_str(255, 110, 180) +HOTPINK2 = rgb_str(238, 106, 167) +HOTPINK3 = rgb_str(205, 96, 144) +HOTPINK4 = rgb_str(139, 58, 98) +INDIANRED = rgb_str(176, 23, 31) +INDIANRED = rgb_str(205, 92, 92) +INDIANRED1 = rgb_str(255, 106, 106) +INDIANRED2 = rgb_str(238, 99, 99) +INDIANRED3 = rgb_str(205, 85, 85) +INDIANRED4 = rgb_str(139, 58, 58) +INDIGO = rgb_str(75, 0, 130) +IVORY1 = rgb_str(255, 255, 240) +IVORY2 = rgb_str(238, 238, 224) +IVORY3 = rgb_str(205, 205, 193) +IVORY4 = rgb_str(139, 139, 131) +IVORYBLACK = rgb_str(41, 36, 33) +KHAKI = rgb_str(240, 230, 140) +KHAKI1 = rgb_str(255, 246, 143) +KHAKI2 = rgb_str(238, 230, 133) +KHAKI3 = rgb_str(205, 198, 115) +KHAKI4 = rgb_str(139, 134, 78) +LAVENDER = rgb_str(230, 230, 250) +LAVENDERBLUSH1 = rgb_str(255, 240, 245) +LAVENDERBLUSH2 = rgb_str(238, 224, 229) +LAVENDERBLUSH3 = rgb_str(205, 193, 197) +LAVENDERBLUSH4 = rgb_str(139, 131, 134) +LAWNGREEN = rgb_str(124, 252, 0) +LEMONCHIFFON1 = rgb_str(255, 250, 205) +LEMONCHIFFON2 = rgb_str(238, 233, 191) +LEMONCHIFFON3 = rgb_str(205, 201, 165) +LEMONCHIFFON4 = rgb_str(139, 137, 112) +LIGHTBLUE = rgb_str(173, 216, 230) +LIGHTBLUE1 = rgb_str(191, 239, 255) +LIGHTBLUE2 = rgb_str(178, 223, 238) +LIGHTBLUE3 = rgb_str(154, 192, 205) +LIGHTBLUE4 = rgb_str(104, 131, 139) +LIGHTCORAL = rgb_str(240, 128, 128) +LIGHTCYAN1 = rgb_str(224, 255, 255) +LIGHTCYAN2 = rgb_str(209, 238, 238) +LIGHTCYAN3 = rgb_str(180, 205, 205) +LIGHTCYAN4 = rgb_str(122, 139, 139) +LIGHTGOLDENROD1 = rgb_str(255, 236, 139) +LIGHTGOLDENROD2 = rgb_str(238, 220, 130) +LIGHTGOLDENROD3 = rgb_str(205, 190, 112) +LIGHTGOLDENROD4 = rgb_str(139, 129, 76) +LIGHTGOLDENRODYELLOW = rgb_str(250, 250, 210) +LIGHTGREY = rgb_str(211, 211, 211) +LIGHTPINK = rgb_str(255, 182, 193) +LIGHTPINK1 = rgb_str(255, 174, 185) +LIGHTPINK2 = rgb_str(238, 162, 173) +LIGHTPINK3 = rgb_str(205, 140, 149) +LIGHTPINK4 = rgb_str(139, 95, 101) +LIGHTSALMON1 = rgb_str(255, 160, 122) +LIGHTSALMON2 = rgb_str(238, 149, 114) +LIGHTSALMON3 = rgb_str(205, 129, 98) +LIGHTSALMON4 = rgb_str(139, 87, 66) +LIGHTSEAGREEN = rgb_str(32, 178, 170) +LIGHTSKYBLUE = rgb_str(135, 206, 250) +LIGHTSKYBLUE1 = rgb_str(176, 226, 255) +LIGHTSKYBLUE2 = rgb_str(164, 211, 238) +LIGHTSKYBLUE3 = rgb_str(141, 182, 205) +LIGHTSKYBLUE4 = rgb_str(96, 123, 139) +LIGHTSLATEBLUE = rgb_str(132, 112, 255) +LIGHTSLATEGRAY = rgb_str(119, 136, 153) +LIGHTSTEELBLUE = rgb_str(176, 196, 222) +LIGHTSTEELBLUE1 = rgb_str(202, 225, 255) +LIGHTSTEELBLUE2 = rgb_str(188, 210, 238) +LIGHTSTEELBLUE3 = rgb_str(162, 181, 205) +LIGHTSTEELBLUE4 = rgb_str(110, 123, 139) +LIGHTYELLOW1 = rgb_str(255, 255, 224) +LIGHTYELLOW2 = rgb_str(238, 238, 209) +LIGHTYELLOW3 = rgb_str(205, 205, 180) +LIGHTYELLOW4 = rgb_str(139, 139, 122) +LIMEGREEN = rgb_str(50, 205, 50) +LINEN = rgb_str(250, 240, 230) +MAGENTA = rgb_str(255, 0, 255) +MAGENTA2 = rgb_str(238, 0, 238) +MAGENTA3 = rgb_str(205, 0, 205) +MAGENTA4 = rgb_str(139, 0, 139) +MANGANESEBLUE = rgb_str(3, 168, 158) +MAROON = rgb_str(128, 0, 0) +MAROON1 = rgb_str(255, 52, 179) +MAROON2 = rgb_str(238, 48, 167) +MAROON3 = rgb_str(205, 41, 144) +MAROON4 = rgb_str(139, 28, 98) +MEDIUMORCHID = rgb_str(186, 85, 211) +MEDIUMORCHID1 = rgb_str(224, 102, 255) +MEDIUMORCHID2 = rgb_str(209, 95, 238) +MEDIUMORCHID3 = rgb_str(180, 82, 205) +MEDIUMORCHID4 = rgb_str(122, 55, 139) +MEDIUMPURPLE = rgb_str(147, 112, 219) +MEDIUMPURPLE1 = rgb_str(171, 130, 255) +MEDIUMPURPLE2 = rgb_str(159, 121, 238) +MEDIUMPURPLE3 = rgb_str(137, 104, 205) +MEDIUMPURPLE4 = rgb_str(93, 71, 139) +MEDIUMSEAGREEN = rgb_str(60, 179, 113) +MEDIUMSLATEBLUE = rgb_str(123, 104, 238) +MEDIUMSPRINGGREEN = rgb_str(0, 250, 154) +MEDIUMTURQUOISE = rgb_str(72, 209, 204) +MEDIUMVIOLETRED = rgb_str(199, 21, 133) +MELON = rgb_str(227, 168, 105) +MIDNIGHTBLUE = rgb_str(25, 25, 112) +MINT = rgb_str(189, 252, 201) +MINTCREAM = rgb_str(245, 255, 250) +MISTYROSE1 = rgb_str(255, 228, 225) +MISTYROSE2 = rgb_str(238, 213, 210) +MISTYROSE3 = rgb_str(205, 183, 181) +MISTYROSE4 = rgb_str(139, 125, 123) +MOCCASIN = rgb_str(255, 228, 181) +NAVAJOWHITE1 = rgb_str(255, 222, 173) +NAVAJOWHITE2 = rgb_str(238, 207, 161) +NAVAJOWHITE3 = rgb_str(205, 179, 139) +NAVAJOWHITE4 = rgb_str(139, 121, 94) +NAVY = rgb_str(0, 0, 128) +OLDLACE = rgb_str(253, 245, 230) +OLIVE = rgb_str(128, 128, 0) +OLIVEDRAB = rgb_str(107, 142, 35) +OLIVEDRAB1 = rgb_str(192, 255, 62) +OLIVEDRAB2 = rgb_str(179, 238, 58) +OLIVEDRAB3 = rgb_str(154, 205, 50) +OLIVEDRAB4 = rgb_str(105, 139, 34) +ORANGE = rgb_str(255, 128, 0) +ORANGE1 = rgb_str(255, 165, 0) +ORANGE2 = rgb_str(238, 154, 0) +ORANGE3 = rgb_str(205, 133, 0) +ORANGE4 = rgb_str(139, 90, 0) +ORANGERED1 = rgb_str(255, 69, 0) +ORANGERED2 = rgb_str(238, 64, 0) +ORANGERED3 = rgb_str(205, 55, 0) +ORANGERED4 = rgb_str(139, 37, 0) +ORCHID = rgb_str(218, 112, 214) +ORCHID1 = rgb_str(255, 131, 250) +ORCHID2 = rgb_str(238, 122, 233) +ORCHID3 = rgb_str(205, 105, 201) +ORCHID4 = rgb_str(139, 71, 137) +PALEGOLDENROD = rgb_str(238, 232, 170) +PALEGREEN = rgb_str(152, 251, 152) +PALEGREEN1 = rgb_str(154, 255, 154) +PALEGREEN2 = rgb_str(144, 238, 144) +PALEGREEN3 = rgb_str(124, 205, 124) +PALEGREEN4 = rgb_str(84, 139, 84) +PALETURQUOISE1 = rgb_str(187, 255, 255) +PALETURQUOISE2 = rgb_str(174, 238, 238) +PALETURQUOISE3 = rgb_str(150, 205, 205) +PALETURQUOISE4 = rgb_str(102, 139, 139) +PALEVIOLETRED = rgb_str(219, 112, 147) +PALEVIOLETRED1 = rgb_str(255, 130, 171) +PALEVIOLETRED2 = rgb_str(238, 121, 159) +PALEVIOLETRED3 = rgb_str(205, 104, 137) +PALEVIOLETRED4 = rgb_str(139, 71, 93) +PAPAYAWHIP = rgb_str(255, 239, 213) +PEACHPUFF1 = rgb_str(255, 218, 185) +PEACHPUFF2 = rgb_str(238, 203, 173) +PEACHPUFF3 = rgb_str(205, 175, 149) +PEACHPUFF4 = rgb_str(139, 119, 101) +PEACOCK = rgb_str(51, 161, 201) +PINK = rgb_str(255, 192, 203) +PINK1 = rgb_str(255, 181, 197) +PINK2 = rgb_str(238, 169, 184) +PINK3 = rgb_str(205, 145, 158) +PINK4 = rgb_str(139, 99, 108) +PLUM = rgb_str(221, 160, 221) +PLUM1 = rgb_str(255, 187, 255) +PLUM2 = rgb_str(238, 174, 238) +PLUM3 = rgb_str(205, 150, 205) +PLUM4 = rgb_str(139, 102, 139) +POWDERBLUE = rgb_str(176, 224, 230) +PURPLE = rgb_str(128, 0, 128) +PURPLE1 = rgb_str(155, 48, 255) +PURPLE2 = rgb_str(145, 44, 238) +PURPLE3 = rgb_str(125, 38, 205) +PURPLE4 = rgb_str(85, 26, 139) +RASPBERRY = rgb_str(135, 38, 87) +RAWSIENNA = rgb_str(199, 97, 20) +RED1 = rgb_str(255, 0, 0) +RED2 = rgb_str(238, 0, 0) +RED3 = rgb_str(205, 0, 0) +RED4 = rgb_str(139, 0, 0) +ROSYBROWN = rgb_str(188, 143, 143) +ROSYBROWN1 = rgb_str(255, 193, 193) +ROSYBROWN2 = rgb_str(238, 180, 180) +ROSYBROWN3 = rgb_str(205, 155, 155) +ROSYBROWN4 = rgb_str(139, 105, 105) +ROYALBLUE = rgb_str(65, 105, 225) +ROYALBLUE1 = rgb_str(72, 118, 255) +ROYALBLUE2 = rgb_str(67, 110, 238) +ROYALBLUE3 = rgb_str(58, 95, 205) +ROYALBLUE4 = rgb_str(39, 64, 139) +SALMON = rgb_str(250, 128, 114) +SALMON1 = rgb_str(255, 140, 105) +SALMON2 = rgb_str(238, 130, 98) +SALMON3 = rgb_str(205, 112, 84) +SALMON4 = rgb_str(139, 76, 57) +SANDYBROWN = rgb_str(244, 164, 96) +SAPGREEN = rgb_str(48, 128, 20) +SEAGREEN1 = rgb_str(84, 255, 159) +SEAGREEN2 = rgb_str(78, 238, 148) +SEAGREEN3 = rgb_str(67, 205, 128) +SEAGREEN4 = rgb_str(46, 139, 87) +SEASHELL1 = rgb_str(255, 245, 238) +SEASHELL2 = rgb_str(238, 229, 222) +SEASHELL3 = rgb_str(205, 197, 191) +SEASHELL4 = rgb_str(139, 134, 130) +SEPIA = rgb_str(94, 38, 18) +SGIBEET = rgb_str(142, 56, 142) +SGIBRIGHTGRAY = rgb_str(197, 193, 170) +SGICHARTREUSE = rgb_str(113, 198, 113) +SGIDARKGRAY = rgb_str(85, 85, 85) +SGIGRAY12 = rgb_str(30, 30, 30) +SGIGRAY16 = rgb_str(40, 40, 40) +SGIGRAY32 = rgb_str(81, 81, 81) +SGIGRAY36 = rgb_str(91, 91, 91) +SGIGRAY52 = rgb_str(132, 132, 132) +SGIGRAY56 = rgb_str(142, 142, 142) +SGIGRAY72 = rgb_str(183, 183, 183) +SGIGRAY76 = rgb_str(193, 193, 193) +SGIGRAY92 = rgb_str(234, 234, 234) +SGIGRAY96 = rgb_str(244, 244, 244) +SGILIGHTBLUE = rgb_str(125, 158, 192) +SGILIGHTGRAY = rgb_str(170, 170, 170) +SGIOLIVEDRAB = rgb_str(142, 142, 56) +SGISALMON = rgb_str(198, 113, 113) +SGISLATEBLUE = rgb_str(113, 113, 198) +SGITEAL = rgb_str(56, 142, 142) +SIENNA = rgb_str(160, 82, 45) +SIENNA1 = rgb_str(255, 130, 71) +SIENNA2 = rgb_str(238, 121, 66) +SIENNA3 = rgb_str(205, 104, 57) +SIENNA4 = rgb_str(139, 71, 38) +SILVER = rgb_str(192, 192, 192) +SKYBLUE = rgb_str(135, 206, 235) +SKYBLUE1 = rgb_str(135, 206, 255) +SKYBLUE2 = rgb_str(126, 192, 238) +SKYBLUE3 = rgb_str(108, 166, 205) +SKYBLUE4 = rgb_str(74, 112, 139) +SLATEBLUE = rgb_str(106, 90, 205) +SLATEBLUE1 = rgb_str(131, 111, 255) +SLATEBLUE2 = rgb_str(122, 103, 238) +SLATEBLUE3 = rgb_str(105, 89, 205) +SLATEBLUE4 = rgb_str(71, 60, 139) +SLATEGRAY = rgb_str(112, 128, 144) +SLATEGRAY1 = rgb_str(198, 226, 255) +SLATEGRAY2 = rgb_str(185, 211, 238) +SLATEGRAY3 = rgb_str(159, 182, 205) +SLATEGRAY4 = rgb_str(108, 123, 139) +SNOW1 = rgb_str(255, 250, 250) +SNOW2 = rgb_str(238, 233, 233) +SNOW3 = rgb_str(205, 201, 201) +SNOW4 = rgb_str(139, 137, 137) +SPRINGGREEN = rgb_str(0, 255, 127) +SPRINGGREEN1 = rgb_str(0, 238, 118) +SPRINGGREEN2 = rgb_str(0, 205, 102) +SPRINGGREEN3 = rgb_str(0, 139, 69) +STEELBLUE = rgb_str(70, 130, 180) +STEELBLUE1 = rgb_str(99, 184, 255) +STEELBLUE2 = rgb_str(92, 172, 238) +STEELBLUE3 = rgb_str(79, 148, 205) +STEELBLUE4 = rgb_str(54, 100, 139) +TAN = rgb_str(210, 180, 140) +TAN1 = rgb_str(255, 165, 79) +TAN2 = rgb_str(238, 154, 73) +TAN3 = rgb_str(205, 133, 63) +TAN4 = rgb_str(139, 90, 43) +TEAL = rgb_str(0, 128, 128) +THISTLE = rgb_str(216, 191, 216) +THISTLE1 = rgb_str(255, 225, 255) +THISTLE2 = rgb_str(238, 210, 238) +THISTLE3 = rgb_str(205, 181, 205) +THISTLE4 = rgb_str(139, 123, 139) +TOMATO1 = rgb_str(255, 99, 71) +TOMATO2 = rgb_str(238, 92, 66) +TOMATO3 = rgb_str(205, 79, 57) +TOMATO4 = rgb_str(139, 54, 38) +TURQUOISE = rgb_str(64, 224, 208) +TURQUOISE1 = rgb_str(0, 245, 255) +TURQUOISE2 = rgb_str(0, 229, 238) +TURQUOISE3 = rgb_str(0, 197, 205) +TURQUOISE4 = rgb_str(0, 134, 139) +TURQUOISEBLUE = rgb_str(0, 199, 140) +VIOLET = rgb_str(238, 130, 238) +VIOLETRED = rgb_str(208, 32, 144) +VIOLETRED1 = rgb_str(255, 62, 150) +VIOLETRED2 = rgb_str(238, 58, 140) +VIOLETRED3 = rgb_str(205, 50, 120) +VIOLETRED4 = rgb_str(139, 34, 82) +WARMGREY = rgb_str(128, 128, 105) +WHEAT = rgb_str(245, 222, 179) +WHEAT1 = rgb_str(255, 231, 186) +WHEAT2 = rgb_str(238, 216, 174) +WHEAT3 = rgb_str(205, 186, 150) +WHEAT4 = rgb_str(139, 126, 102) +WHITE = rgb_str(255, 255, 255) +WHITESMOKE = rgb_str(245, 245, 245) +WHITESMOKE = rgb_str(245, 245, 245) +YELLOW1 = rgb_str(255, 255, 0) +YELLOW2 = rgb_str(238, 238, 0) +YELLOW3 = rgb_str(205, 205, 0) +YELLOW4 = rgb_str(139, 139, 0) -#Add colors to colors dictionary colors['aliceblue'] = ALICEBLUE colors['antiquewhite'] = ANTIQUEWHITE colors['antiquewhite1'] = ANTIQUEWHITE1 From 13f623c1be20570984d17c9f37fd2347d418c1a1 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Mon, 22 Oct 2018 19:44:58 -0400 Subject: [PATCH 32/34] Code review updates --- plotly/io/_templates.py | 4 --- .../test_graph_objs/test_template.py | 7 ++-- templategen/definitions.py | 32 ++++--------------- 3 files changed, 9 insertions(+), 34 deletions(-) diff --git a/plotly/io/_templates.py b/plotly/io/_templates.py index 5ff6a1a0536..e6c25ce49e1 100644 --- a/plotly/io/_templates.py +++ b/plotly/io/_templates.py @@ -410,10 +410,6 @@ def to_templated(fig, skip=('title', 'text')): # Initialize templated figure with deep copy of input figure templated_fig = copy.deepcopy(fig) - # Initialize template object - if templated_fig.layout.template is None: - templated_fig.layout.template = {} - # Handle layout walk_push_to_template(templated_fig.layout, templated_fig.layout.template.layout, diff --git a/plotly/tests/test_core/test_graph_objs/test_template.py b/plotly/tests/test_core/test_graph_objs/test_template.py index 7e863e00bd1..b03ad579e51 100644 --- a/plotly/tests/test_core/test_graph_objs/test_template.py +++ b/plotly/tests/test_core/test_graph_objs/test_template.py @@ -24,7 +24,7 @@ def tearDown(self): # template graph_objs tests # ------------------------- - def test_starts_as_none(self): + def test_starts_as_empty(self): fig = go.Figure() self.assertEqual(fig.layout.template, go.layout.Template()) @@ -44,7 +44,6 @@ def test_init_in_figure_constructor(self): def test_init_in_property_assignment(self): fig = go.Figure() - fig.layout.template = {} fig.layout.template = go.layout.Template( layout={'title': 'Hello, world'}) @@ -76,7 +75,6 @@ def test_defaults_in_constructor(self): def test_defaults_in_property_assignment(self): fig = go.Figure() - fig.layout.template = {} fig.layout.template.layout.sliderdefaults = \ go.layout.Slider(bgcolor='green') @@ -186,8 +184,7 @@ def test_move_layout_nested_properties_no_skip(self): 'title': 'Hello'}) templated_fig = pio.to_templated(fig, skip=None) - # Note that properties named 'title' are not moved to template by - # default + # With skip=None properties named 'title' should be moved to template expected_fig = go.Figure(layout={ 'template': {'layout': {'font': {'family': 'Courier New'}, 'paper_bgcolor': 'yellow', diff --git a/templategen/definitions.py b/templategen/definitions.py index aeb6183feff..a7b69ef17b1 100644 --- a/templategen/definitions.py +++ b/templategen/definitions.py @@ -19,7 +19,7 @@ def ggplot2(): # https://ggplot2.tidyverse.org/reference/scale_colour_continuous.html colorscale = [[0, 'rgb(20,44,66)'], [1, 'rgb(90,179,244)']] - # Hue cycle for 3 categories + # Hue cycle for 5 categories colorway = ["#F8766D", "#A3A500", "#00BF7D", "#00B0F6", "#E76BF3"] # Set colorbar_common @@ -214,7 +214,10 @@ def seaborn(): # https://meyerweb.com/eric/tools/color-blend/#DFE8F3:EBF0F8:1:hex plotly_clrs['Rhino Light 1.5'] = '#E5ECF6' - +# Perceptually uniform colorscale that matches brand colors really well. +# Trim the upper and lower ends so that it doesn't go so close to black and +# white. This makes the scale more visible on both white and black +# backgrounds bmw_subset = cc.b_linear_bmw_5_95_c86[50:230] linear_bmw_5_95_c86_n256 = [ [i/(len(bmw_subset)-1), clr] for i, clr in enumerate(bmw_subset) @@ -228,13 +231,6 @@ def plotly(): # ------------- colorscale = linear_bmw_5_95_c86_n256 - # Hue cycle for 3 categories - # - # Created with: - # import seaborn as sns - # sns.set() - # [f'rgb({int(r*255)},{int(g*255)},{int(b*255)})' - # for r, g, b in sns.color_palette()] colorway = [ plotly_clrs['Cornflower'], plotly_clrs['Sienna'], @@ -305,13 +301,6 @@ def plotly_white(): # ------------- colorscale = linear_bmw_5_95_c86_n256 - # Hue cycle for 3 categories - # - # Created with: - # import seaborn as sns - # sns.set() - # [f'rgb({int(r*255)},{int(g*255)},{int(b*255)})' - # for r, g, b in sns.color_palette()] colorway = [ plotly_clrs['Cornflower'], plotly_clrs['Sienna'], @@ -390,13 +379,6 @@ def plotly_dark(): # ------------- colorscale = linear_bmw_5_95_c86_n256 - # Hue cycle for 3 categories - # - # Created with: - # import seaborn as sns - # sns.set() - # [f'rgb({int(r*255)},{int(g*255)},{int(b*255)})' - # for r, g, b in sns.color_palette()] colorway = [ plotly_clrs['Cornflower'], plotly_clrs['Sienna'], @@ -478,7 +460,7 @@ def plotly_dark(): def presentation(): """ - Template the increases the size of text and markers/lines for certain + Template that increases the size of text and markers/lines for certain trace types """ @@ -524,4 +506,4 @@ def xgridoff(): return template -builders['xgridoff'] = xgridoff \ No newline at end of file +builders['xgridoff'] = xgridoff From 5b0e461cf6abf2add4667041b0cd58a795bfe4cc Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Mon, 22 Oct 2018 20:03:20 -0400 Subject: [PATCH 33/34] Initialize template object when layout is assigned to a figure --- plotly/basedatatypes.py | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/plotly/basedatatypes.py b/plotly/basedatatypes.py index c60ad0135c2..35019b50ad0 100644 --- a/plotly/basedatatypes.py +++ b/plotly/basedatatypes.py @@ -239,12 +239,8 @@ class is a subclass of both BaseFigure and widgets.DOMWidget. # Template # -------- # ### Check for default template ### - import plotly.io as pio - if self._layout_obj.template is None: - if pio.templates.default is not None: - self._layout_obj.template = pio.templates.default - else: - self._layout_obj.template = {} + self._initialize_layout_template() + # Magic Methods # ------------- @@ -1341,6 +1337,14 @@ def _init_child_props(self, child): # Layout # ------ + def _initialize_layout_template(self): + import plotly.io as pio + if self._layout_obj.template is None: + if pio.templates.default is not None: + self._layout_obj.template = pio.templates.default + else: + self._layout_obj.template = {} + @property def layout(self): """ @@ -1374,6 +1378,10 @@ def layout(self, new_layout): new_layout._orphan_props.clear() self._layout_obj = new_layout + # Initialize template object + # -------------------------- + self._initialize_layout_template() + # Notify JS side self._send_relayout_msg(new_layout_data) From 5c34bb5c1c175ecaf44ffcb0be00f0e239289429 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Tue, 23 Oct 2018 06:48:47 -0400 Subject: [PATCH 34/34] Make zerolines same color as grid lines with heavier weight in plotly* templates This makes zero lines less distracting when not helpful, while still making it fairly easy to focus on them when desired. --- plotly/package_data/templates/plotly.json | 2 +- plotly/package_data/templates/plotly_dark.json | 2 +- plotly/package_data/templates/plotly_white.json | 2 +- templategen/definitions.py | 16 +++++++++++++++- 4 files changed, 18 insertions(+), 4 deletions(-) diff --git a/plotly/package_data/templates/plotly.json b/plotly/package_data/templates/plotly.json index 91c0476d80f..e063cc41a6f 100644 --- a/plotly/package_data/templates/plotly.json +++ b/plotly/package_data/templates/plotly.json @@ -1 +1 @@ -{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"bgcolor": "#E5ECF6", "angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "ternary": {"bgcolor": "#E5ECF6", "aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white"}, "yaxis": {"gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white"}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "#E5ECF6", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"bgcolor": "#E5ECF6", "angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "ternary": {"bgcolor": "#E5ECF6", "aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "xaxis": {"gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "#E5ECF6", "subunitcolor": "white", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/plotly_dark.json b/plotly/package_data/templates/plotly_dark.json index 7b3ef4a3627..3b98e60b8ae 100644 --- a/plotly/package_data/templates/plotly_dark.json +++ b/plotly/package_data/templates/plotly_dark.json @@ -1 +1 @@ -{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#f2f5fa"}, "paper_bgcolor": "rgb(17,17,17)", "plot_bgcolor": "rgb(17,17,17)", "polar": {"bgcolor": "rgb(17,17,17)", "angularaxis": {"gridcolor": "#506784", "linecolor": "#506784", "ticks": ""}, "radialaxis": {"gridcolor": "#506784", "linecolor": "#506784", "ticks": ""}}, "ternary": {"bgcolor": "rgb(17,17,17)", "aaxis": {"gridcolor": "#506784", "linecolor": "#506784", "ticks": ""}, "baxis": {"gridcolor": "#506784", "linecolor": "#506784", "ticks": ""}, "caxis": {"gridcolor": "#506784", "linecolor": "#506784", "ticks": ""}}, "xaxis": {"gridcolor": "#283442", "linecolor": "#506784", "ticks": "", "zerolinecolor": "#C8D4E3"}, "yaxis": {"gridcolor": "#283442", "linecolor": "#506784", "ticks": "", "zerolinecolor": "#C8D4E3"}, "scene": {"xaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "yaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "zaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#f2f5fa", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#f2f5fa", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "subunitcolor": "#506784", "showland": true, "showlakes": true, "lakecolor": "rgb(17,17,17)"}, "updatemenudefaults": {"bgcolor": "#506784", "borderwidth": 0}, "sliderdefaults": {"bgcolor": "#C8D4E3", "borderwidth": 1, "bordercolor": "rgb(17,17,17)", "tickwidth": 0}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#506784", "linecolor": "#506784", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6"}, "baxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#506784", "linecolor": "#506784", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#506784"}, "line": {"color": "rgb(17,17,17)"}}, "header": {"fill": {"color": "#2a3f5f"}, "line": {"color": "rgb(17,17,17)"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#f2f5fa"}, "paper_bgcolor": "rgb(17,17,17)", "plot_bgcolor": "rgb(17,17,17)", "polar": {"bgcolor": "rgb(17,17,17)", "angularaxis": {"gridcolor": "#506784", "linecolor": "#506784", "ticks": ""}, "radialaxis": {"gridcolor": "#506784", "linecolor": "#506784", "ticks": ""}}, "ternary": {"bgcolor": "rgb(17,17,17)", "aaxis": {"gridcolor": "#506784", "linecolor": "#506784", "ticks": ""}, "baxis": {"gridcolor": "#506784", "linecolor": "#506784", "ticks": ""}, "caxis": {"gridcolor": "#506784", "linecolor": "#506784", "ticks": ""}}, "xaxis": {"gridcolor": "#283442", "linecolor": "#506784", "ticks": "", "zerolinecolor": "#283442", "zerolinewidth": 2}, "yaxis": {"gridcolor": "#283442", "linecolor": "#506784", "ticks": "", "zerolinecolor": "#283442", "zerolinewidth": 2}, "scene": {"xaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "yaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}, "zaxis": {"backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "linecolor": "#506784", "showbackground": true, "ticks": "", "zerolinecolor": "#C8D4E3", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#f2f5fa", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#f2f5fa", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "subunitcolor": "#506784", "showland": true, "showlakes": true, "lakecolor": "rgb(17,17,17)"}, "updatemenudefaults": {"bgcolor": "#506784", "borderwidth": 0}, "sliderdefaults": {"bgcolor": "#C8D4E3", "borderwidth": 1, "bordercolor": "rgb(17,17,17)", "tickwidth": 0}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#506784", "linecolor": "#506784", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6"}, "baxis": {"endlinecolor": "#A2B1C6", "gridcolor": "#506784", "linecolor": "#506784", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#506784"}, "line": {"color": "rgb(17,17,17)"}}, "header": {"fill": {"color": "#2a3f5f"}, "line": {"color": "rgb(17,17,17)"}}, "type": "table"}]}} \ No newline at end of file diff --git a/plotly/package_data/templates/plotly_white.json b/plotly/package_data/templates/plotly_white.json index 2c1a4611e4a..e0179c562eb 100644 --- a/plotly/package_data/templates/plotly_white.json +++ b/plotly/package_data/templates/plotly_white.json @@ -1 +1 @@ -{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "white", "polar": {"bgcolor": "white", "angularaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "ticks": ""}, "radialaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "ticks": ""}}, "ternary": {"bgcolor": "white", "aaxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "ticks": ""}, "baxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "ticks": ""}, "caxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "ticks": ""}}, "xaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "ticks": "", "zerolinecolor": "#A2B1C6"}, "yaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "ticks": "", "zerolinecolor": "#A2B1C6"}, "scene": {"xaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}, "yaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}, "zaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "ticks": "", "zerolinecolor": "#A2B1C6", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "white", "subunitcolor": "#C8D4E3", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file +{"layout": {"colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa"], "font": {"color": "#2a3f5f"}, "paper_bgcolor": "white", "plot_bgcolor": "white", "polar": {"bgcolor": "white", "angularaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "ticks": ""}, "radialaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "ticks": ""}}, "ternary": {"bgcolor": "white", "aaxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "ticks": ""}, "baxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "ticks": ""}, "caxis": {"gridcolor": "#DFE8F3", "linecolor": "#A2B1C6", "ticks": ""}}, "xaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "ticks": "", "zerolinecolor": "#EBF0F8", "zerolinewidth": 2}, "yaxis": {"gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "ticks": "", "zerolinecolor": "#EBF0F8", "zerolinewidth": 2}, "scene": {"xaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "ticks": "", "zerolinecolor": "#EBF0F8", "gridwidth": 2}, "yaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "ticks": "", "zerolinecolor": "#EBF0F8", "gridwidth": 2}, "zaxis": {"backgroundcolor": "white", "gridcolor": "#DFE8F3", "linecolor": "#EBF0F8", "showbackground": true, "ticks": "", "zerolinecolor": "#EBF0F8", "gridwidth": 2}}, "shapedefaults": {"fillcolor": "#506784", "line": {"width": 0}, "opacity": 0.4}, "annotationdefaults": {"arrowcolor": "#506784", "arrowhead": 0, "arrowwidth": 1}, "geo": {"bgcolor": "white", "landcolor": "white", "subunitcolor": "#C8D4E3", "showland": true, "showlakes": true, "lakecolor": "white"}}, "data": {"histogram2dcontour": [{"type": "histogram2dcontour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "choropleth": [{"type": "choropleth", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "histogram2d": [{"type": "histogram2d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmap": [{"type": "heatmap", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "heatmapgl": [{"type": "heatmapgl", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contourcarpet": [{"type": "contourcarpet", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "contour": [{"type": "contour", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "surface": [{"type": "surface", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "mesh3d": [{"type": "mesh3d", "colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}], "scatter": [{"type": "scatter", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "parcoords": [{"type": "parcoords", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "bar": [{"type": "bar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergeo": [{"type": "scattergeo", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "histogram": [{"type": "histogram", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattergl": [{"type": "scattergl", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatter3d": [{"type": "scatter3d", "line": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false}, "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorscale": [[0.0, "#0508b8"], [0.0893854748603352, "#1910d8"], [0.1787709497206704, "#3c19f0"], [0.2681564245810056, "#6b1cfb"], [0.3575418994413408, "#981cfd"], [0.44692737430167595, "#bf1cfd"], [0.5363128491620112, "#dd2bfd"], [0.6256983240223464, "#f246fe"], [0.7150837988826816, "#fc67fd"], [0.8044692737430168, "#fe88fc"], [0.8938547486033519, "#fea5fd"], [0.9832402234636871, "#febefe"], [1.0, "#fec3fe"]], "autocolorscale": false, "colorbar": {"outlinewidth": 0, "ticks": ""}}}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}} \ No newline at end of file diff --git a/templategen/definitions.py b/templategen/definitions.py index a7b69ef17b1..409bb7c1a00 100644 --- a/templategen/definitions.py +++ b/templategen/definitions.py @@ -289,6 +289,10 @@ def plotly(): template.layout.scene.yaxis.gridwidth = 2 template.layout.scene.zaxis.gridwidth = 2 + # Increase width of cartesian zero lines + template.layout.xaxis.zerolinewidth = 2 + template.layout.yaxis.zerolinewidth = 2 + # Set table header font color to white return template @@ -342,7 +346,7 @@ def plotly_white(): panel_background_clr='white', panel_grid_clr=plotly_clrs['Rhino Medium 2'], axis_ticks_clr=plotly_clrs['Rhino Core'], - zerolinecolor_clr=plotly_clrs['Rhino Medium 1'], + zerolinecolor_clr=plotly_clrs['Rhino Light 2'], table_cell_clr=plotly_clrs['Rhino Light 2'], table_header_clr=plotly_clrs['Rhino Medium 2'], table_line_clr='white', @@ -367,6 +371,10 @@ def plotly_white(): template.layout.ternary.baxis.update(opts) template.layout.ternary.caxis.update(opts) + # Increase width of cartesian zero lines + template.layout.xaxis.zerolinewidth = 2 + template.layout.yaxis.zerolinewidth = 2 + # Set table header font color to white return template @@ -451,6 +459,12 @@ def plotly_dark(): template.layout.xaxis.gridcolor = plotly_clrs['Rhino Darker'] template.layout.yaxis.gridcolor = plotly_clrs['Rhino Darker'] + # Increase width of cartesian zero lines + template.layout.xaxis.zerolinecolor = plotly_clrs['Rhino Darker'] + template.layout.yaxis.zerolinecolor = plotly_clrs['Rhino Darker'] + template.layout.xaxis.zerolinewidth = 2 + template.layout.yaxis.zerolinewidth = 2 + # Set table header font color to white return template