@deephaven/chart 0.8.1-beta.0 → 0.8.2-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Chart.d.ts +8 -0
- package/dist/Chart.d.ts.map +1 -1
- package/dist/Chart.js +18 -4
- package/dist/Chart.js.map +1 -1
- package/dist/ChartTestUtils.d.ts +3 -3
- package/package.json +8 -8
- package/dist/plotly/__mocks__/Plot.d.ts +0 -10
- package/dist/plotly/__mocks__/Plot.d.ts.map +0 -1
- package/dist/plotly/__mocks__/Plotly.d.ts +0 -5
- package/dist/plotly/__mocks__/Plotly.d.ts.map +0 -1
- package/dist/tsconfig.tsbuildinfo +0 -1
package/dist/Chart.d.ts
CHANGED
|
@@ -22,6 +22,8 @@ export class Chart extends React.Component<any, any, any> {
|
|
|
22
22
|
plotWrapper: React.RefObject<any>;
|
|
23
23
|
columnFormats: any[];
|
|
24
24
|
dateTimeFormatterOptions: {};
|
|
25
|
+
decimalFormatOptions: {};
|
|
26
|
+
integerFormatOptions: {};
|
|
25
27
|
rect: any;
|
|
26
28
|
ranges: object | null;
|
|
27
29
|
isSubscribed: boolean;
|
|
@@ -68,6 +70,12 @@ export namespace Chart {
|
|
|
68
70
|
showTimeZone: PropTypes.Validator<boolean>;
|
|
69
71
|
showTSeparator: PropTypes.Validator<boolean>;
|
|
70
72
|
formatter: PropTypes.Validator<(PropTypes.InferProps<{}> | null | undefined)[]>;
|
|
73
|
+
decimalFormatOptions: PropTypes.Requireable<PropTypes.InferProps<{
|
|
74
|
+
defaultFormatString: PropTypes.Requireable<string>;
|
|
75
|
+
}>>;
|
|
76
|
+
integerFormatOptions: PropTypes.Requireable<PropTypes.InferProps<{
|
|
77
|
+
defaultFormatString: PropTypes.Requireable<string>;
|
|
78
|
+
}>>;
|
|
71
79
|
}>>;
|
|
72
80
|
const isActive: PropTypes.Requireable<boolean>;
|
|
73
81
|
const onDisconnect: PropTypes.Requireable<(...args: any[]) => any>;
|
package/dist/Chart.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Chart.d.ts","sourceRoot":"","sources":["../src/Chart.jsx"],"names":[],"mappings":"AAiBA;IACE;;;OAGG;IACH;;;;;;MAWC;IAED,4FAQC;IAED,
|
|
1
|
+
{"version":3,"file":"Chart.d.ts","sourceRoot":"","sources":["../src/Chart.jsx"],"names":[],"mappings":"AAiBA;IACE;;;OAGG;IACH;;;;;;MAWC;IAED,4FAQC;IAED,wBAgCC;IA8HD,wBAIC;IAED,8BAcC;IAED,mCAsEC;IAED,oCAcC;IAED,mCAWC;IAED,0DAYC;IA3RC,2BAA6B;IAC7B,kCAAoC;IACpC,qBAAuB;IACvB,6BAAkC;IAClC,yBAA8B;IAC9B,yBAA8B;IAC9B,UAAgB;IAChB,sBAAkB;IAClB,sBAAyB;IACzB,uBAA0B;IA8C5B;;;;;;;;;;;;;;MAmDE;IAEF,mBAEC;IAED,iBAUC;IAED,kBAYC;IAED,oBAQC;IA2ID;;;;;;;OAOG;IACH,8BAFW,OAAO,QAwBjB;IAED,sBAGC;IAED,6CAmBC;IAED,wBAUC;IAED,yBAcC;CAuCF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAmCe,uCAAQ;;QACT,sCAAQ;;QACX,mCAAQ;;QACT,kCAAQ;;QACE,4CAAQ"}
|
package/dist/Chart.js
CHANGED
|
@@ -88,6 +88,8 @@ export class Chart extends Component {
|
|
|
88
88
|
this.plotWrapper = /*#__PURE__*/React.createRef();
|
|
89
89
|
this.columnFormats = [];
|
|
90
90
|
this.dateTimeFormatterOptions = {};
|
|
91
|
+
this.decimalFormatOptions = {};
|
|
92
|
+
this.integerFormatOptions = {};
|
|
91
93
|
this.rect = null;
|
|
92
94
|
this.ranges = null;
|
|
93
95
|
this.isSubscribed = false;
|
|
@@ -424,16 +426,22 @@ export class Chart extends Component {
|
|
|
424
426
|
updateFormatterSettings(settings) {
|
|
425
427
|
var columnFormats = FormatterUtils.getColumnFormats(settings);
|
|
426
428
|
var dateTimeFormatterOptions = FormatterUtils.getDateTimeFormatterOptions(settings);
|
|
429
|
+
var {
|
|
430
|
+
decimalFormatOptions = {},
|
|
431
|
+
integerFormatOptions = {}
|
|
432
|
+
} = settings;
|
|
427
433
|
|
|
428
|
-
if (!deepEqual(this.columnFormats, columnFormats) || !deepEqual(this.dateTimeFormatterOptions, dateTimeFormatterOptions)) {
|
|
434
|
+
if (!deepEqual(this.columnFormats, columnFormats) || !deepEqual(this.dateTimeFormatterOptions, dateTimeFormatterOptions) || !deepEqual(this.decimalFormatOptions, decimalFormatOptions) || !deepEqual(this.integerFormatOptions, integerFormatOptions)) {
|
|
429
435
|
this.columnFormats = FormatterUtils.getColumnFormats(settings);
|
|
430
|
-
this.dateTimeFormatterOptions =
|
|
436
|
+
this.dateTimeFormatterOptions = dateTimeFormatterOptions;
|
|
437
|
+
this.decimalFormatOptions = decimalFormatOptions;
|
|
438
|
+
this.integerFormatOptions = integerFormatOptions;
|
|
431
439
|
this.updateFormatter();
|
|
432
440
|
}
|
|
433
441
|
}
|
|
434
442
|
|
|
435
443
|
updateFormatter() {
|
|
436
|
-
var formatter = new Formatter(this.columnFormats, this.dateTimeFormatterOptions);
|
|
444
|
+
var formatter = new Formatter(this.columnFormats, this.dateTimeFormatterOptions, this.decimalFormatOptions, this.integerFormatOptions);
|
|
437
445
|
var {
|
|
438
446
|
model
|
|
439
447
|
} = this.props;
|
|
@@ -496,7 +504,13 @@ Chart.propTypes = {
|
|
|
496
504
|
defaultDateTimeFormat: PropTypes.string.isRequired,
|
|
497
505
|
showTimeZone: PropTypes.bool.isRequired,
|
|
498
506
|
showTSeparator: PropTypes.bool.isRequired,
|
|
499
|
-
formatter: PropTypes.arrayOf(PropTypes.shape({})).isRequired
|
|
507
|
+
formatter: PropTypes.arrayOf(PropTypes.shape({})).isRequired,
|
|
508
|
+
decimalFormatOptions: PropTypes.shape({
|
|
509
|
+
defaultFormatString: PropTypes.string
|
|
510
|
+
}),
|
|
511
|
+
integerFormatOptions: PropTypes.shape({
|
|
512
|
+
defaultFormatString: PropTypes.string
|
|
513
|
+
})
|
|
500
514
|
}),
|
|
501
515
|
isActive: PropTypes.bool,
|
|
502
516
|
onDisconnect: PropTypes.func,
|
package/dist/Chart.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/Chart.jsx"],"names":["React","Component","PropTypes","deepEqual","memoize","vsLoading","dhGraphLineDown","dhWarningFilled","Formatter","FormatterUtils","DateUtils","Log","Plotly","Plot","ChartModel","ChartUtils","ChartConstants","log","module","Chart","convertIcon","faIcon","width","path","icon","ascent","descent","transform","downsampleButtonTitle","isDownsampleInProgress","isDownsamplingDisabled","constructor","props","downsamplingError","isDownsampleFinished","customButtons","push","name","click","handleDownsampleClick","displaylogo","displayModeBar","modeBarButtons","handleAfterPlot","bind","handleModelEvent","handlePlotUpdate","handleRelayout","handleRestyle","plot","createRef","plotWrapper","columnFormats","dateTimeFormatterOptions","rect","ranges","isSubscribed","isLoadedFired","state","data","layout","datarevision","revision","componentDidMount","updateDimensions","updateModelDimensions","initData","initFormatter","isActive","subscribe","componentDidUpdate","prevProps","settings","updateFormatterSettings","unsubscribe","componentWillUnmount","getPlotRect","current","getBoundingClientRect","model","setState","getData","getLayout","height","debug2","setDownsamplingDisabled","event","type","detail","EVENT_UPDATED","currentSeries","onUpdate","isLoading","EVENT_LOADFINISHED","EVENT_DISCONNECT","onDisconnect","EVENT_RECONNECT","onReconnect","EVENT_DOWNSAMPLESTARTED","EVENT_DOWNSAMPLEFINISHED","EVENT_DOWNSAMPLENEEDED","EVENT_DOWNSAMPLEFAILED","message","onError","Error","debug","figure","getLayoutRanges","isRangesChanged","changes","Object","keys","includes","onSettingsChanged","hiddenSeries","hiddenlabels","seriesIndexes","reduce","acc","visible","force","warn","isRectChanged","setDimensions","getColumnFormats","getDateTimeFormatterOptions","updateFormatter","formatter","setFormatter","relayout","el","autosize","catch","e","render","config","getCachedConfig","isPlotShown","propTypes","instanceOf","isRequired","shape","timeZone","string","defaultDateTimeFormat","showTimeZone","bool","showTSeparator","arrayOf","func","defaultProps","FULL_DATE_FORMAT"],"mappings":"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","sourcesContent":["import React, { Component } from 'react';\nimport PropTypes from 'prop-types';\nimport deepEqual from 'deep-equal';\nimport memoize from 'memoize-one';\nimport { vsLoading, dhGraphLineDown, dhWarningFilled } from '@deephaven/icons';\nimport { Formatter, FormatterUtils, DateUtils } from '@deephaven/iris-grid';\nimport Log from '@deephaven/log';\nimport Plotly from './plotly/Plotly';\nimport Plot from './plotly/Plot';\n\nimport ChartModel from './ChartModel';\nimport ChartUtils from './ChartUtils';\nimport ChartConstants from './Chart.module.scss';\nimport './Chart.scss';\n\nconst log = Log.module('Chart');\n\nexport class Chart extends Component {\n /**\n * Convert a font awesome icon definition to a plotly icon definition\n * @param {FontAwesome.IconDefinition} faIcon The icon to convert\n */\n static convertIcon(faIcon) {\n const [width, , , , path] = faIcon.icon;\n // By default the icons are flipped upside down, so we need to add our own transform\n // https://github.com/plotly/plotly.js/issues/1335\n return {\n width,\n path,\n ascent: width,\n descent: 0,\n transform: `matrix(1, 0, 0, 1, 0, 0)`,\n };\n }\n\n static downsampleButtonTitle(isDownsampleInProgress, isDownsamplingDisabled) {\n if (isDownsampleInProgress) {\n return ChartConstants['title-downsampling-in-progress'];\n }\n\n return isDownsamplingDisabled\n ? ChartConstants['title-downsampling-disabled']\n : ChartConstants['title-downsampling-enabled'];\n }\n\n constructor(props) {\n super(props);\n\n this.handleAfterPlot = this.handleAfterPlot.bind(this);\n this.handleDownsampleClick = this.handleDownsampleClick.bind(this);\n this.handleModelEvent = this.handleModelEvent.bind(this);\n this.handlePlotUpdate = this.handlePlotUpdate.bind(this);\n this.handleRelayout = this.handleRelayout.bind(this);\n this.handleRestyle = this.handleRestyle.bind(this);\n\n this.plot = React.createRef();\n this.plotWrapper = React.createRef();\n this.columnFormats = [];\n this.dateTimeFormatterOptions = {};\n this.rect = null;\n this.ranges = null;\n this.isSubscribed = false;\n this.isLoadedFired = false;\n\n this.state = {\n data: null,\n downsamplingError: null,\n isDownsampleFinished: false,\n isDownsampleInProgress: false,\n isDownsamplingDisabled: false,\n layout: {\n datarevision: 0,\n },\n revision: 0,\n };\n }\n\n componentDidMount() {\n // Need to make sure the model dimensions are up to date before initializing the data\n this.updateDimensions();\n this.updateModelDimensions();\n\n this.initData();\n this.initFormatter();\n\n const { isActive } = this.props;\n if (isActive) {\n this.subscribe();\n }\n }\n\n componentDidUpdate(prevProps) {\n const { isActive, settings } = this.props;\n this.updateFormatterSettings(settings);\n\n if (isActive !== prevProps.isActive) {\n if (isActive) {\n this.subscribe();\n } else {\n this.unsubscribe();\n }\n }\n }\n\n componentWillUnmount() {\n this.unsubscribe();\n }\n\n getCachedConfig = memoize(\n (\n downsamplingError,\n isDownsampleFinished,\n isDownsampleInProgress,\n isDownsamplingDisabled\n ) => {\n const customButtons = [];\n if (downsamplingError) {\n customButtons.push({\n name: `${ChartConstants['title-downsampling-failed']}: ${downsamplingError}`,\n click: () => {},\n icon: Chart.convertIcon(dhWarningFilled),\n });\n }\n\n if (\n isDownsampleFinished ||\n isDownsampleInProgress ||\n isDownsamplingDisabled ||\n downsamplingError\n ) {\n const name = Chart.downsampleButtonTitle(\n isDownsampleInProgress,\n isDownsamplingDisabled\n );\n const icon = isDownsampleInProgress ? vsLoading : dhGraphLineDown;\n customButtons.push({\n name,\n icon: Chart.convertIcon(icon),\n click: this.handleDownsampleClick,\n });\n }\n\n return {\n displaylogo: false,\n\n // Display the mode bar if there's an error or downsampling so user can see progress\n // Yes, the value is a boolean or the string 'hover': https://github.com/plotly/plotly.js/blob/master/src/plot_api/plot_config.js#L249\n displayModeBar:\n isDownsampleInProgress || downsamplingError ? true : 'hover',\n\n // Each array gets grouped together in the mode bar\n modeBarButtons: [\n customButtons,\n ['toImage'],\n ['zoom2d', 'pan2d'],\n ['zoomIn2d', 'zoomOut2d', 'autoScale2d', 'resetScale2d'],\n ],\n };\n }\n );\n\n getPlotRect() {\n return this.plotWrapper.current?.getBoundingClientRect() ?? null;\n }\n\n initData() {\n const { model } = this.props;\n const { layout } = this.state;\n this.setState({\n data: model.getData(),\n layout: {\n ...layout,\n ...model.getLayout(),\n },\n });\n }\n\n subscribe() {\n if (this.isSubscribed) {\n return;\n }\n\n const { model } = this.props;\n if (!this.rect || this.rect.width === 0 || this.rect.height === 0) {\n log.debug2('Delaying subscription until model dimensions are set');\n return;\n }\n model.subscribe(this.handleModelEvent);\n this.isSubscribed = true;\n }\n\n unsubscribe() {\n if (!this.isSubscribed) {\n return;\n }\n\n const { model } = this.props;\n model.unsubscribe(this.handleModelEvent);\n this.isSubscribed = false;\n }\n\n handleAfterPlot() {\n if (this.plot.current) {\n // TODO: Translate whatever Don was doing in plotting.js in the afterplot here so that area graphs show up properly\n }\n }\n\n handleDownsampleClick() {\n this.setState(\n ({ isDownsamplingDisabled }) => ({\n downsamplingError: null,\n isDownsampleInProgress: false,\n isDownsampleFinished: false,\n isDownsamplingDisabled: !isDownsamplingDisabled,\n }),\n () => {\n const { model } = this.props;\n const { isDownsamplingDisabled } = this.state;\n model.setDownsamplingDisabled(isDownsamplingDisabled);\n }\n );\n }\n\n handleModelEvent(event) {\n const { type, detail } = event;\n log.debug2('Received data update', type, detail);\n\n switch (type) {\n case ChartModel.EVENT_UPDATED: {\n this.currentSeries += 1;\n this.setState(state => {\n const { layout, revision } = state;\n layout.datarevision += 1;\n return {\n data: detail,\n layout,\n revision: revision + 1,\n };\n });\n\n const { onUpdate } = this.props;\n onUpdate({ isLoading: !this.isLoadedFired });\n break;\n }\n case ChartModel.EVENT_LOADFINISHED: {\n const { onUpdate } = this.props;\n this.isLoadedFired = true;\n onUpdate({ isLoading: false });\n break;\n }\n case ChartModel.EVENT_DISCONNECT: {\n const { onDisconnect } = this.props;\n onDisconnect();\n break;\n }\n case ChartModel.EVENT_RECONNECT: {\n const { onReconnect } = this.props;\n onReconnect();\n break;\n }\n case ChartModel.EVENT_DOWNSAMPLESTARTED: {\n this.setState({\n isDownsampleFinished: false,\n isDownsampleInProgress: true,\n downsamplingError: null,\n });\n break;\n }\n case ChartModel.EVENT_DOWNSAMPLEFINISHED: {\n this.setState({\n isDownsampleFinished: true,\n isDownsampleInProgress: false,\n downsamplingError: null,\n });\n break;\n }\n case ChartModel.EVENT_DOWNSAMPLENEEDED:\n case ChartModel.EVENT_DOWNSAMPLEFAILED: {\n const downsamplingError = detail.message ? detail.message : detail;\n this.setState({\n isDownsampleFinished: false,\n isDownsampleInProgress: false,\n isDownsamplingDisabled: false,\n downsamplingError,\n });\n\n const { onError } = this.props;\n onError(new Error(downsamplingError));\n break;\n }\n default:\n log.debug('Unknown event type', type, event);\n }\n }\n\n handlePlotUpdate(figure) {\n // User could have modified zoom/pan here, update the model dimensions\n // We don't need to update the datarevision, as we don't have any data changes\n // until an update comes back from the server anyway\n const { layout } = figure;\n const ranges = ChartUtils.getLayoutRanges(layout);\n\n const isRangesChanged = !deepEqual(ranges, this.ranges);\n\n if (isRangesChanged) {\n this.ranges = ranges;\n\n this.updateModelDimensions(true);\n }\n }\n\n handleRelayout(changes) {\n log.debug('handleRelayout', changes);\n if (Object.keys(changes).includes('hiddenlabels')) {\n const { onSettingsChanged } = this.props;\n // Pie charts store series visibility in layout.hiddenlabels and trigger relayout on changes\n // Series visibility for other types of charts is handled in handleRestyle\n const hiddenSeries = [...changes.hiddenlabels];\n onSettingsChanged({ hiddenSeries });\n }\n\n this.updateModelDimensions();\n }\n\n handleRestyle([changes, seriesIndexes]) {\n log.debug('handleRestyle', changes, seriesIndexes);\n if (Object.keys(changes).includes('visible')) {\n const { data } = this.state;\n const { onSettingsChanged } = this.props;\n const hiddenSeries = data.reduce(\n (acc, { name, visible }) =>\n visible === 'legendonly' ? [...acc, name] : acc,\n []\n );\n onSettingsChanged({ hiddenSeries });\n }\n }\n\n /**\n * Update the models dimensions and ranges.\n * Note that this will update it all whether the plot size changes OR the range\n * the user is looking at has changed (eg. panning/zooming).\n * Could update each independently, but doing them at the same time keeps the\n * ChartModel API a bit cleaner.\n * @param {boolean} force Force a change even if the chart dimensions haven't changed (eg. after pan/zoom)\n */\n updateModelDimensions(force = false) {\n const rect = this.getPlotRect();\n if (!rect) {\n log.warn('Unable to get plotting rect');\n return;\n }\n\n const isRectChanged =\n !this.rect ||\n this.rect.width !== rect.width ||\n this.rect.height !== rect.height;\n\n if (isRectChanged || force) {\n this.rect = rect;\n\n const { isActive, model } = this.props;\n model.setDimensions(rect);\n // We may need to resubscribe if dimensions were too small before\n if (isActive) {\n this.subscribe();\n }\n }\n }\n\n initFormatter() {\n const { settings } = this.props;\n this.updateFormatterSettings(settings);\n }\n\n updateFormatterSettings(settings) {\n const columnFormats = FormatterUtils.getColumnFormats(settings);\n const dateTimeFormatterOptions = FormatterUtils.getDateTimeFormatterOptions(\n settings\n );\n\n if (\n !deepEqual(this.columnFormats, columnFormats) ||\n !deepEqual(this.dateTimeFormatterOptions, dateTimeFormatterOptions)\n ) {\n this.columnFormats = FormatterUtils.getColumnFormats(settings);\n this.dateTimeFormatterOptions = FormatterUtils.getDateTimeFormatterOptions(\n settings\n );\n this.updateFormatter();\n }\n }\n\n updateFormatter() {\n const formatter = new Formatter(\n this.columnFormats,\n this.dateTimeFormatterOptions\n );\n\n const { model } = this.props;\n model.setFormatter(formatter);\n }\n\n updateDimensions() {\n const rect = this.getPlotRect();\n if (\n this.plot.current != null &&\n rect != null &&\n rect.width > 0 &&\n rect.height > 0\n ) {\n // Call relayout to resize avoiding the debouncing plotly does\n // https://github.com/plotly/plotly.js/issues/2769#issuecomment-402099552\n Plotly.relayout(this.plot.current.el, { autosize: true }).catch(e => {\n log.debug('Unable to resize, promise rejected', e);\n });\n }\n }\n\n render() {\n const {\n data,\n downsamplingError,\n isDownsampleFinished,\n isDownsampleInProgress,\n isDownsamplingDisabled,\n layout,\n revision,\n } = this.state;\n const config = this.getCachedConfig(\n downsamplingError,\n isDownsampleFinished,\n isDownsampleInProgress,\n isDownsamplingDisabled\n );\n const isPlotShown = data != null;\n return (\n <div className=\"h-100 w-100 chart-wrapper\" ref={this.plotWrapper}>\n {isPlotShown && (\n <Plot\n ref={this.plot}\n data={data}\n layout={layout}\n revision={revision}\n config={config}\n onAfterPlot={this.handleAfterPlot}\n onRelayout={this.handleRelayout}\n onUpdate={this.handlePlotUpdate}\n onRestyle={this.handleRestyle}\n useResizeHandler\n style={{ height: '100%', width: '100%' }}\n />\n )}\n </div>\n );\n }\n}\n\nChart.propTypes = {\n model: PropTypes.instanceOf(ChartModel).isRequired,\n // These settings come from the redux store\n settings: PropTypes.shape({\n timeZone: PropTypes.string.isRequired,\n defaultDateTimeFormat: PropTypes.string.isRequired,\n showTimeZone: PropTypes.bool.isRequired,\n showTSeparator: PropTypes.bool.isRequired,\n formatter: PropTypes.arrayOf(PropTypes.shape({})).isRequired,\n }),\n isActive: PropTypes.bool,\n onDisconnect: PropTypes.func,\n onReconnect: PropTypes.func,\n onUpdate: PropTypes.func,\n onError: PropTypes.func,\n onSettingsChanged: PropTypes.func,\n};\n\nChart.defaultProps = {\n isActive: true,\n settings: {\n timeZone: 'America/New_York',\n defaultDateTimeFormat: DateUtils.FULL_DATE_FORMAT,\n showTimeZone: false,\n showTSeparator: true,\n formatter: [],\n },\n onDisconnect: () => {},\n onReconnect: () => {},\n onUpdate: () => {},\n onError: () => {},\n onSettingsChanged: () => {},\n};\n\nexport default Chart;\n"],"file":"Chart.js"}
|
|
1
|
+
{"version":3,"sources":["../src/Chart.jsx"],"names":["React","Component","PropTypes","deepEqual","memoize","vsLoading","dhGraphLineDown","dhWarningFilled","Formatter","FormatterUtils","DateUtils","Log","Plotly","Plot","ChartModel","ChartUtils","ChartConstants","log","module","Chart","convertIcon","faIcon","width","path","icon","ascent","descent","transform","downsampleButtonTitle","isDownsampleInProgress","isDownsamplingDisabled","constructor","props","downsamplingError","isDownsampleFinished","customButtons","push","name","click","handleDownsampleClick","displaylogo","displayModeBar","modeBarButtons","handleAfterPlot","bind","handleModelEvent","handlePlotUpdate","handleRelayout","handleRestyle","plot","createRef","plotWrapper","columnFormats","dateTimeFormatterOptions","decimalFormatOptions","integerFormatOptions","rect","ranges","isSubscribed","isLoadedFired","state","data","layout","datarevision","revision","componentDidMount","updateDimensions","updateModelDimensions","initData","initFormatter","isActive","subscribe","componentDidUpdate","prevProps","settings","updateFormatterSettings","unsubscribe","componentWillUnmount","getPlotRect","current","getBoundingClientRect","model","setState","getData","getLayout","height","debug2","setDownsamplingDisabled","event","type","detail","EVENT_UPDATED","currentSeries","onUpdate","isLoading","EVENT_LOADFINISHED","EVENT_DISCONNECT","onDisconnect","EVENT_RECONNECT","onReconnect","EVENT_DOWNSAMPLESTARTED","EVENT_DOWNSAMPLEFINISHED","EVENT_DOWNSAMPLENEEDED","EVENT_DOWNSAMPLEFAILED","message","onError","Error","debug","figure","getLayoutRanges","isRangesChanged","changes","Object","keys","includes","onSettingsChanged","hiddenSeries","hiddenlabels","seriesIndexes","reduce","acc","visible","force","warn","isRectChanged","setDimensions","getColumnFormats","getDateTimeFormatterOptions","updateFormatter","formatter","setFormatter","relayout","el","autosize","catch","e","render","config","getCachedConfig","isPlotShown","propTypes","instanceOf","isRequired","shape","timeZone","string","defaultDateTimeFormat","showTimeZone","bool","showTSeparator","arrayOf","defaultFormatString","func","defaultProps","FULL_DATE_FORMAT"],"mappings":"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","sourcesContent":["import React, { Component } from 'react';\nimport PropTypes from 'prop-types';\nimport deepEqual from 'deep-equal';\nimport memoize from 'memoize-one';\nimport { vsLoading, dhGraphLineDown, dhWarningFilled } from '@deephaven/icons';\nimport { Formatter, FormatterUtils, DateUtils } from '@deephaven/iris-grid';\nimport Log from '@deephaven/log';\nimport Plotly from './plotly/Plotly';\nimport Plot from './plotly/Plot';\n\nimport ChartModel from './ChartModel';\nimport ChartUtils from './ChartUtils';\nimport ChartConstants from './Chart.module.scss';\nimport './Chart.scss';\n\nconst log = Log.module('Chart');\n\nexport class Chart extends Component {\n /**\n * Convert a font awesome icon definition to a plotly icon definition\n * @param {FontAwesome.IconDefinition} faIcon The icon to convert\n */\n static convertIcon(faIcon) {\n const [width, , , , path] = faIcon.icon;\n // By default the icons are flipped upside down, so we need to add our own transform\n // https://github.com/plotly/plotly.js/issues/1335\n return {\n width,\n path,\n ascent: width,\n descent: 0,\n transform: `matrix(1, 0, 0, 1, 0, 0)`,\n };\n }\n\n static downsampleButtonTitle(isDownsampleInProgress, isDownsamplingDisabled) {\n if (isDownsampleInProgress) {\n return ChartConstants['title-downsampling-in-progress'];\n }\n\n return isDownsamplingDisabled\n ? ChartConstants['title-downsampling-disabled']\n : ChartConstants['title-downsampling-enabled'];\n }\n\n constructor(props) {\n super(props);\n\n this.handleAfterPlot = this.handleAfterPlot.bind(this);\n this.handleDownsampleClick = this.handleDownsampleClick.bind(this);\n this.handleModelEvent = this.handleModelEvent.bind(this);\n this.handlePlotUpdate = this.handlePlotUpdate.bind(this);\n this.handleRelayout = this.handleRelayout.bind(this);\n this.handleRestyle = this.handleRestyle.bind(this);\n\n this.plot = React.createRef();\n this.plotWrapper = React.createRef();\n this.columnFormats = [];\n this.dateTimeFormatterOptions = {};\n this.decimalFormatOptions = {};\n this.integerFormatOptions = {};\n this.rect = null;\n this.ranges = null;\n this.isSubscribed = false;\n this.isLoadedFired = false;\n\n this.state = {\n data: null,\n downsamplingError: null,\n isDownsampleFinished: false,\n isDownsampleInProgress: false,\n isDownsamplingDisabled: false,\n layout: {\n datarevision: 0,\n },\n revision: 0,\n };\n }\n\n componentDidMount() {\n // Need to make sure the model dimensions are up to date before initializing the data\n this.updateDimensions();\n this.updateModelDimensions();\n\n this.initData();\n this.initFormatter();\n\n const { isActive } = this.props;\n if (isActive) {\n this.subscribe();\n }\n }\n\n componentDidUpdate(prevProps) {\n const { isActive, settings } = this.props;\n this.updateFormatterSettings(settings);\n\n if (isActive !== prevProps.isActive) {\n if (isActive) {\n this.subscribe();\n } else {\n this.unsubscribe();\n }\n }\n }\n\n componentWillUnmount() {\n this.unsubscribe();\n }\n\n getCachedConfig = memoize(\n (\n downsamplingError,\n isDownsampleFinished,\n isDownsampleInProgress,\n isDownsamplingDisabled\n ) => {\n const customButtons = [];\n if (downsamplingError) {\n customButtons.push({\n name: `${ChartConstants['title-downsampling-failed']}: ${downsamplingError}`,\n click: () => {},\n icon: Chart.convertIcon(dhWarningFilled),\n });\n }\n\n if (\n isDownsampleFinished ||\n isDownsampleInProgress ||\n isDownsamplingDisabled ||\n downsamplingError\n ) {\n const name = Chart.downsampleButtonTitle(\n isDownsampleInProgress,\n isDownsamplingDisabled\n );\n const icon = isDownsampleInProgress ? vsLoading : dhGraphLineDown;\n customButtons.push({\n name,\n icon: Chart.convertIcon(icon),\n click: this.handleDownsampleClick,\n });\n }\n\n return {\n displaylogo: false,\n\n // Display the mode bar if there's an error or downsampling so user can see progress\n // Yes, the value is a boolean or the string 'hover': https://github.com/plotly/plotly.js/blob/master/src/plot_api/plot_config.js#L249\n displayModeBar:\n isDownsampleInProgress || downsamplingError ? true : 'hover',\n\n // Each array gets grouped together in the mode bar\n modeBarButtons: [\n customButtons,\n ['toImage'],\n ['zoom2d', 'pan2d'],\n ['zoomIn2d', 'zoomOut2d', 'autoScale2d', 'resetScale2d'],\n ],\n };\n }\n );\n\n getPlotRect() {\n return this.plotWrapper.current?.getBoundingClientRect() ?? null;\n }\n\n initData() {\n const { model } = this.props;\n const { layout } = this.state;\n this.setState({\n data: model.getData(),\n layout: {\n ...layout,\n ...model.getLayout(),\n },\n });\n }\n\n subscribe() {\n if (this.isSubscribed) {\n return;\n }\n\n const { model } = this.props;\n if (!this.rect || this.rect.width === 0 || this.rect.height === 0) {\n log.debug2('Delaying subscription until model dimensions are set');\n return;\n }\n model.subscribe(this.handleModelEvent);\n this.isSubscribed = true;\n }\n\n unsubscribe() {\n if (!this.isSubscribed) {\n return;\n }\n\n const { model } = this.props;\n model.unsubscribe(this.handleModelEvent);\n this.isSubscribed = false;\n }\n\n handleAfterPlot() {\n if (this.plot.current) {\n // TODO: Translate whatever Don was doing in plotting.js in the afterplot here so that area graphs show up properly\n }\n }\n\n handleDownsampleClick() {\n this.setState(\n ({ isDownsamplingDisabled }) => ({\n downsamplingError: null,\n isDownsampleInProgress: false,\n isDownsampleFinished: false,\n isDownsamplingDisabled: !isDownsamplingDisabled,\n }),\n () => {\n const { model } = this.props;\n const { isDownsamplingDisabled } = this.state;\n model.setDownsamplingDisabled(isDownsamplingDisabled);\n }\n );\n }\n\n handleModelEvent(event) {\n const { type, detail } = event;\n log.debug2('Received data update', type, detail);\n\n switch (type) {\n case ChartModel.EVENT_UPDATED: {\n this.currentSeries += 1;\n this.setState(state => {\n const { layout, revision } = state;\n layout.datarevision += 1;\n return {\n data: detail,\n layout,\n revision: revision + 1,\n };\n });\n\n const { onUpdate } = this.props;\n onUpdate({ isLoading: !this.isLoadedFired });\n break;\n }\n case ChartModel.EVENT_LOADFINISHED: {\n const { onUpdate } = this.props;\n this.isLoadedFired = true;\n onUpdate({ isLoading: false });\n break;\n }\n case ChartModel.EVENT_DISCONNECT: {\n const { onDisconnect } = this.props;\n onDisconnect();\n break;\n }\n case ChartModel.EVENT_RECONNECT: {\n const { onReconnect } = this.props;\n onReconnect();\n break;\n }\n case ChartModel.EVENT_DOWNSAMPLESTARTED: {\n this.setState({\n isDownsampleFinished: false,\n isDownsampleInProgress: true,\n downsamplingError: null,\n });\n break;\n }\n case ChartModel.EVENT_DOWNSAMPLEFINISHED: {\n this.setState({\n isDownsampleFinished: true,\n isDownsampleInProgress: false,\n downsamplingError: null,\n });\n break;\n }\n case ChartModel.EVENT_DOWNSAMPLENEEDED:\n case ChartModel.EVENT_DOWNSAMPLEFAILED: {\n const downsamplingError = detail.message ? detail.message : detail;\n this.setState({\n isDownsampleFinished: false,\n isDownsampleInProgress: false,\n isDownsamplingDisabled: false,\n downsamplingError,\n });\n\n const { onError } = this.props;\n onError(new Error(downsamplingError));\n break;\n }\n default:\n log.debug('Unknown event type', type, event);\n }\n }\n\n handlePlotUpdate(figure) {\n // User could have modified zoom/pan here, update the model dimensions\n // We don't need to update the datarevision, as we don't have any data changes\n // until an update comes back from the server anyway\n const { layout } = figure;\n const ranges = ChartUtils.getLayoutRanges(layout);\n\n const isRangesChanged = !deepEqual(ranges, this.ranges);\n\n if (isRangesChanged) {\n this.ranges = ranges;\n\n this.updateModelDimensions(true);\n }\n }\n\n handleRelayout(changes) {\n log.debug('handleRelayout', changes);\n if (Object.keys(changes).includes('hiddenlabels')) {\n const { onSettingsChanged } = this.props;\n // Pie charts store series visibility in layout.hiddenlabels and trigger relayout on changes\n // Series visibility for other types of charts is handled in handleRestyle\n const hiddenSeries = [...changes.hiddenlabels];\n onSettingsChanged({ hiddenSeries });\n }\n\n this.updateModelDimensions();\n }\n\n handleRestyle([changes, seriesIndexes]) {\n log.debug('handleRestyle', changes, seriesIndexes);\n if (Object.keys(changes).includes('visible')) {\n const { data } = this.state;\n const { onSettingsChanged } = this.props;\n const hiddenSeries = data.reduce(\n (acc, { name, visible }) =>\n visible === 'legendonly' ? [...acc, name] : acc,\n []\n );\n onSettingsChanged({ hiddenSeries });\n }\n }\n\n /**\n * Update the models dimensions and ranges.\n * Note that this will update it all whether the plot size changes OR the range\n * the user is looking at has changed (eg. panning/zooming).\n * Could update each independently, but doing them at the same time keeps the\n * ChartModel API a bit cleaner.\n * @param {boolean} force Force a change even if the chart dimensions haven't changed (eg. after pan/zoom)\n */\n updateModelDimensions(force = false) {\n const rect = this.getPlotRect();\n if (!rect) {\n log.warn('Unable to get plotting rect');\n return;\n }\n\n const isRectChanged =\n !this.rect ||\n this.rect.width !== rect.width ||\n this.rect.height !== rect.height;\n\n if (isRectChanged || force) {\n this.rect = rect;\n\n const { isActive, model } = this.props;\n model.setDimensions(rect);\n // We may need to resubscribe if dimensions were too small before\n if (isActive) {\n this.subscribe();\n }\n }\n }\n\n initFormatter() {\n const { settings } = this.props;\n this.updateFormatterSettings(settings);\n }\n\n updateFormatterSettings(settings) {\n const columnFormats = FormatterUtils.getColumnFormats(settings);\n const dateTimeFormatterOptions = FormatterUtils.getDateTimeFormatterOptions(\n settings\n );\n const { decimalFormatOptions = {}, integerFormatOptions = {} } = settings;\n\n if (\n !deepEqual(this.columnFormats, columnFormats) ||\n !deepEqual(this.dateTimeFormatterOptions, dateTimeFormatterOptions) ||\n !deepEqual(this.decimalFormatOptions, decimalFormatOptions) ||\n !deepEqual(this.integerFormatOptions, integerFormatOptions)\n ) {\n this.columnFormats = FormatterUtils.getColumnFormats(settings);\n this.dateTimeFormatterOptions = dateTimeFormatterOptions;\n this.decimalFormatOptions = decimalFormatOptions;\n this.integerFormatOptions = integerFormatOptions;\n this.updateFormatter();\n }\n }\n\n updateFormatter() {\n const formatter = new Formatter(\n this.columnFormats,\n this.dateTimeFormatterOptions,\n this.decimalFormatOptions,\n this.integerFormatOptions\n );\n\n const { model } = this.props;\n model.setFormatter(formatter);\n }\n\n updateDimensions() {\n const rect = this.getPlotRect();\n if (\n this.plot.current != null &&\n rect != null &&\n rect.width > 0 &&\n rect.height > 0\n ) {\n // Call relayout to resize avoiding the debouncing plotly does\n // https://github.com/plotly/plotly.js/issues/2769#issuecomment-402099552\n Plotly.relayout(this.plot.current.el, { autosize: true }).catch(e => {\n log.debug('Unable to resize, promise rejected', e);\n });\n }\n }\n\n render() {\n const {\n data,\n downsamplingError,\n isDownsampleFinished,\n isDownsampleInProgress,\n isDownsamplingDisabled,\n layout,\n revision,\n } = this.state;\n const config = this.getCachedConfig(\n downsamplingError,\n isDownsampleFinished,\n isDownsampleInProgress,\n isDownsamplingDisabled\n );\n const isPlotShown = data != null;\n return (\n <div className=\"h-100 w-100 chart-wrapper\" ref={this.plotWrapper}>\n {isPlotShown && (\n <Plot\n ref={this.plot}\n data={data}\n layout={layout}\n revision={revision}\n config={config}\n onAfterPlot={this.handleAfterPlot}\n onRelayout={this.handleRelayout}\n onUpdate={this.handlePlotUpdate}\n onRestyle={this.handleRestyle}\n useResizeHandler\n style={{ height: '100%', width: '100%' }}\n />\n )}\n </div>\n );\n }\n}\n\nChart.propTypes = {\n model: PropTypes.instanceOf(ChartModel).isRequired,\n // These settings come from the redux store\n settings: PropTypes.shape({\n timeZone: PropTypes.string.isRequired,\n defaultDateTimeFormat: PropTypes.string.isRequired,\n showTimeZone: PropTypes.bool.isRequired,\n showTSeparator: PropTypes.bool.isRequired,\n formatter: PropTypes.arrayOf(PropTypes.shape({})).isRequired,\n decimalFormatOptions: PropTypes.shape({\n defaultFormatString: PropTypes.string,\n }),\n integerFormatOptions: PropTypes.shape({\n defaultFormatString: PropTypes.string,\n }),\n }),\n isActive: PropTypes.bool,\n onDisconnect: PropTypes.func,\n onReconnect: PropTypes.func,\n onUpdate: PropTypes.func,\n onError: PropTypes.func,\n onSettingsChanged: PropTypes.func,\n};\n\nChart.defaultProps = {\n isActive: true,\n settings: {\n timeZone: 'America/New_York',\n defaultDateTimeFormat: DateUtils.FULL_DATE_FORMAT,\n showTimeZone: false,\n showTSeparator: true,\n formatter: [],\n },\n onDisconnect: () => {},\n onReconnect: () => {},\n onUpdate: () => {},\n onError: () => {},\n onSettingsChanged: () => {},\n};\n\nexport default Chart;\n"],"file":"Chart.js"}
|
package/dist/ChartTestUtils.d.ts
CHANGED
|
@@ -6,8 +6,8 @@ declare class ChartTestUtils {
|
|
|
6
6
|
static DEFAULT_SERIES_NAME: string;
|
|
7
7
|
static makeAxis({ label, type, position, formatType, formatPattern, log, }?: {
|
|
8
8
|
label?: string | undefined;
|
|
9
|
-
type?:
|
|
10
|
-
position?:
|
|
9
|
+
type?: import("packages/jsapi-shim/src/dh.types").AxisType | undefined;
|
|
10
|
+
position?: import("packages/jsapi-shim/src/dh.types").AxisPosition | undefined;
|
|
11
11
|
formatType?: any;
|
|
12
12
|
formatPattern?: string | undefined;
|
|
13
13
|
log?: boolean | undefined;
|
|
@@ -19,7 +19,7 @@ declare class ChartTestUtils {
|
|
|
19
19
|
static makeDefaultSources(): any[];
|
|
20
20
|
static makeSeries({ name, plotStyle, sources, lineColor, shapeColor, }?: {
|
|
21
21
|
name?: string | undefined;
|
|
22
|
-
plotStyle?:
|
|
22
|
+
plotStyle?: import("packages/jsapi-shim/src/dh.types").SeriesPlotStyle | undefined;
|
|
23
23
|
sources?: any[] | undefined;
|
|
24
24
|
lineColor?: any;
|
|
25
25
|
shapeColor?: any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deephaven/chart",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.2-beta.5+45a1e78",
|
|
4
4
|
"description": "Deephaven Chart",
|
|
5
5
|
"author": "Deephaven Data Labs LLC",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"start": "cross-env NODE_ENV=development npm run watch"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@deephaven/icons": "^0.8.
|
|
38
|
-
"@deephaven/iris-grid": "^0.8.
|
|
39
|
-
"@deephaven/jsapi-shim": "^0.8.
|
|
37
|
+
"@deephaven/icons": "^0.8.2-beta.5+45a1e78",
|
|
38
|
+
"@deephaven/iris-grid": "^0.8.2-beta.5+45a1e78",
|
|
39
|
+
"@deephaven/jsapi-shim": "^0.8.2-beta.5+45a1e78",
|
|
40
40
|
"deep-equal": "^2.0.4",
|
|
41
41
|
"lodash.debounce": "^4.0.8",
|
|
42
42
|
"memoize-one": "^5.1.1",
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@babel/cli": "^7.16.0",
|
|
54
|
-
"@deephaven/log": "^0.8.
|
|
55
|
-
"@deephaven/mocks": "^0.8.
|
|
56
|
-
"@deephaven/tsconfig": "^0.8.
|
|
54
|
+
"@deephaven/log": "^0.8.2-beta.5+45a1e78",
|
|
55
|
+
"@deephaven/mocks": "^0.8.2-beta.5+45a1e78",
|
|
56
|
+
"@deephaven/tsconfig": "^0.8.2-beta.5+45a1e78",
|
|
57
57
|
"@types/react": "^16.14.8",
|
|
58
58
|
"@types/react-dom": "^16.9.13",
|
|
59
59
|
"cross-env": "^7.0.2",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"publishConfig": {
|
|
74
74
|
"access": "public"
|
|
75
75
|
},
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "45a1e787f47540545e2e3d8649dfc67b7bb85237"
|
|
77
77
|
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export default Plot;
|
|
2
|
-
declare class Plot extends React.Component<any, any, any> {
|
|
3
|
-
constructor(props: any);
|
|
4
|
-
el: HTMLDivElement | null;
|
|
5
|
-
}
|
|
6
|
-
declare namespace Plot {
|
|
7
|
-
const displayName: string;
|
|
8
|
-
}
|
|
9
|
-
import React from "react";
|
|
10
|
-
//# sourceMappingURL=Plot.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Plot.d.ts","sourceRoot":"","sources":["../../../src/plotly/__mocks__/Plot.js"],"names":[],"mappings":";AAGA;IACE,wBAIC;IADC,0BAAc;CAajB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Plotly.d.ts","sourceRoot":"","sources":["../../../src/plotly/__mocks__/Plotly.js"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/react/jsx-runtime.d.ts","../../../node_modules/@types/deep-equal/index.d.ts","../../../node_modules/memoize-one/dist/memoize-one.d.ts","../../../node_modules/@fortawesome/fontawesome-common-types/index.d.ts","../../icons/dist/index.d.ts","../../iris-grid/dist/DateUtils.d.ts","../../iris-grid/dist/formatters/TableColumnFormatter.d.ts","../../iris-grid/dist/formatters/BooleanColumnFormatter.d.ts","../../iris-grid/dist/formatters/CharColumnFormatter.d.ts","../../iris-grid/dist/formatters/DateTimeColumnFormatter.d.ts","../../iris-grid/dist/formatters/DecimalColumnFormatter.d.ts","../../iris-grid/dist/formatters/DefaultColumnFormatter.d.ts","../../iris-grid/dist/formatters/IntegerColumnFormatter.d.ts","../../iris-grid/dist/formatters/index.d.ts","../../iris-grid/dist/Formatter.d.ts","../../iris-grid/dist/FormatterUtils.d.ts","../../../node_modules/@types/jquery/JQueryStatic.d.ts","../../../node_modules/@types/jquery/JQuery.d.ts","../../../node_modules/@types/jquery/misc.d.ts","../../../node_modules/@types/jquery/legacy.d.ts","../../../node_modules/@types/sizzle/index.d.ts","../../../node_modules/@types/jquery/index.d.ts","../../utils/dist/CanceledPromiseError.d.ts","../../utils/dist/ColorUtils.d.ts","../../utils/dist/DbNameValidator.d.ts","../../utils/dist/DOMUtils.d.ts","../../utils/dist/PromiseUtils.d.ts","../../utils/dist/Pending.d.ts","../../utils/dist/RangeUtils.d.ts","../../utils/dist/TextUtils.d.ts","../../utils/dist/TimeoutError.d.ts","../../utils/dist/TimeUtils.d.ts","../../utils/dist/InvalidMetadataError.d.ts","../../utils/dist/ValidationError.d.ts","../../../node_modules/jest-diff/build/cleanupSemantic.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/diffLines.d.ts","../../../node_modules/jest-diff/build/printDiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../utils/dist/TestUtils.d.ts","../../utils/dist/index.d.ts","../../../node_modules/@types/memoizee/index.d.ts","../../../node_modules/popper.js/index.d.ts","../../components/dist/popper/Popper.d.ts","../../components/dist/popper/Tooltip.d.ts","../../components/dist/popper/index.d.ts","../../components/dist/AutoCompleteInput.d.ts","../../components/dist/AutoResizeTextarea.d.ts","../../components/dist/BasicModal.d.ts","../../../node_modules/@fortawesome/fontawesome-svg-core/index.d.ts","../../components/dist/Button.d.ts","../../components/dist/ButtonGroup.d.ts","../../components/dist/ButtonOld.d.ts","../../components/dist/CardFlip.d.ts","../../components/dist/shortcuts/Shortcut.d.ts","../../components/dist/shortcuts/GlobalShortcuts.d.ts","../../components/dist/shortcuts/ShortcutRegistry.d.ts","../../components/dist/shortcuts/index.d.ts","../../components/dist/context-actions/ContextActionUtils.d.ts","../../components/dist/context-actions/ContextActions.d.ts","../../components/dist/context-actions/ContextMenuItem.d.ts","../../components/dist/context-actions/ContextMenu.d.ts","../../components/dist/context-actions/ContextMenuRoot.d.ts","../../components/dist/context-actions/index.d.ts","../../components/dist/Collapse.d.ts","../../components/dist/Checkbox.d.ts","../../components/dist/SearchInput.d.ts","../../components/dist/ComboBox.d.ts","../../components/dist/CustomTimeSelect.d.ts","../../components/dist/DebouncedSearchInput.d.ts","../../components/dist/DeephavenSpinner.d.ts","../../../node_modules/@types/react-beautiful-dnd/index.d.ts","../../../node_modules/@types/react-window/index.d.ts","../../../node_modules/@types/react-virtualized-auto-sizer/index.d.ts","../../components/dist/ItemList.d.ts","../../components/dist/DraggableItemList.d.ts","../../components/dist/DragUtils.d.ts","../../components/dist/HierarchicalCheckboxMenu.d.ts","../../components/dist/ItemListItem.d.ts","../../components/dist/LoadingOverlay.d.ts","../../components/dist/LoadingSpinner.d.ts","../../components/dist/menu-actions/Menu.d.ts","../../components/dist/menu-actions/DropdownMenu.d.ts","../../components/dist/menu-actions/index.d.ts","../../components/dist/MaskedInput.d.ts","../../components/dist/navigation/MenuItem.d.ts","../../components/dist/navigation/Menu.d.ts","../../components/dist/navigation/Page.d.ts","../../components/dist/navigation/Stack.d.ts","../../components/dist/navigation/index.d.ts","../../components/dist/Option.d.ts","../../components/dist/RadioGroup.d.ts","../../components/dist/RadioItem.d.ts","../../components/dist/Select.d.ts","../../components/dist/SelectValueList.d.ts","../../components/dist/SocketedButton.d.ts","../../components/dist/ThemeExport.d.ts","../../components/dist/TimeInput.d.ts","../../components/dist/TimeSlider.d.ts","../../components/dist/ToastNotification.d.ts","../../components/dist/UISwitch.d.ts","../../components/dist/index.d.ts","../../iris-grid/dist/IrisGridShortcuts.d.ts","../../../node_modules/event-target-shim/index.d.ts","../../grid/dist/GridMetrics.d.ts","../../grid/dist/GridTheme.d.ts","../../grid/dist/GridModel.d.ts","../../grid/dist/GridMetricCalculator.d.ts","../../grid/dist/EventHandlerResult.d.ts","../../grid/dist/GridRange.d.ts","../../grid/dist/GridUtils.d.ts","../../grid/dist/GridMouseHandler.d.ts","../../grid/dist/GridRenderer.d.ts","../../grid/dist/KeyHandler.d.ts","../../grid/dist/Grid.d.ts","../../grid/dist/GridTestUtils.d.ts","../../grid/dist/EditableGridModel.d.ts","../../grid/dist/MockGridModel.d.ts","../../grid/dist/ExpandableGridModel.d.ts","../../grid/dist/MockTreeGridModel.d.ts","../../grid/dist/memoizeClear.d.ts","../../grid/dist/key-handlers/SelectionKeyHandler.d.ts","../../grid/dist/key-handlers/TreeKeyHandler.d.ts","../../grid/dist/key-handlers/EditKeyHandler.d.ts","../../grid/dist/key-handlers/PasteKeyHandler.d.ts","../../grid/dist/key-handlers/index.d.ts","../../grid/dist/mouse-handlers/GridSelectionMouseHandler.d.ts","../../grid/dist/mouse-handlers/GridColumnMoveMouseHandler.d.ts","../../grid/dist/mouse-handlers/GridSeparatorMouseHandler.d.ts","../../grid/dist/mouse-handlers/GridColumnSeparatorMouseHandler.d.ts","../../grid/dist/mouse-handlers/GridHorizontalScrollBarMouseHandler.d.ts","../../grid/dist/mouse-handlers/GridRowMoveMouseHandler.d.ts","../../grid/dist/mouse-handlers/GridRowSeparatorMouseHandler.d.ts","../../grid/dist/mouse-handlers/GridRowTreeMouseHandler.d.ts","../../grid/dist/mouse-handlers/GridScrollBarCornerMouseHandler.d.ts","../../grid/dist/mouse-handlers/GridVerticalScrollBarMouseHandler.d.ts","../../grid/dist/mouse-handlers/EditMouseHandler.d.ts","../../grid/dist/mouse-handlers/index.d.ts","../../grid/dist/errors/assertIsDefined.d.ts","../../grid/dist/errors/AssertionError.d.ts","../../grid/dist/errors/PasteError.d.ts","../../grid/dist/errors/index.d.ts","../../grid/dist/index.d.ts","../../iris-grid/dist/IrisGridModel.d.ts","../../iris-grid/dist/IrisGridTableModel.d.ts","../../iris-grid/dist/IrisGridModelFactory.d.ts","../../iris-grid/dist/IrisGridTheme.d.ts","../../iris-grid/dist/IrisGridUtils.d.ts","../../iris-grid/dist/filters/FilterOperator.d.ts","../../iris-grid/dist/filters/FilterType.d.ts","../../iris-grid/dist/filters/index.d.ts","../../iris-grid/dist/TableUtils.d.ts","../../iris-grid/dist/IrisGridRenderer.d.ts","../../iris-grid/dist/sidebar/aggregations/AggregationOperation.d.ts","../../iris-grid/dist/sidebar/aggregations/Aggregations.d.ts","../../iris-grid/dist/sidebar/aggregations/AggregationEdit.d.ts","../../iris-grid/dist/sidebar/aggregations/AggregationUtils.d.ts","../../iris-grid/dist/sidebar/ChartBuilder.d.ts","../../iris-grid/dist/sidebar/CustomColumnBuilder.d.ts","../../iris-grid/dist/sidebar/OptionType.d.ts","../../iris-grid/dist/sidebar/RollupRows.d.ts","../../iris-grid/dist/sidebar/TableCsvExporter.d.ts","../../iris-grid/dist/sidebar/TableSaver.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../iris-grid/dist/sidebar/VisibilityOrderingBuilder.d.ts","../../iris-grid/dist/sidebar/index.d.ts","../../iris-grid/dist/IrisGrid.d.ts","../../iris-grid/dist/index.d.ts","../../log/dist/Logger.d.ts","../../log/dist/DefaultLogger.d.ts","../../log/dist/Log.d.ts","../../log/dist/LogProxy.d.ts","../../log/dist/LogHistory.d.ts","../../log/dist/LoggerLevel.d.ts","../../log/dist/index.d.ts","../src/plotly/Plotly.js","../src/plotly/Plot.js","../src/ChartModel.js","../../jsapi-shim/dist/dh.d.ts","../../jsapi-shim/dist/PropTypes.d.ts","../../jsapi-shim/dist/index.d.ts","../src/ChartUtils.js","../src/Chart.jsx","../../../node_modules/@types/lodash.debounce/index.d.ts","../src/FigureChartModel.js","../src/ChartTheme.js","../src/ChartModelFactory.js","../src/MockChartModel.js","../src/index.ts","../src/ChartTestUtils.js","../src/plotly/__mocks__/Plot.js","../src/plotly/__mocks__/Plotly.js","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/bootstrap/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/ts3.6/base.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/base.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/cheerio/index.d.ts","../../../node_modules/@types/color-name/index.d.ts","../../../node_modules/@types/color-convert/conversions.d.ts","../../../node_modules/@types/color-convert/route.d.ts","../../../node_modules/@types/color-convert/index.d.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../../node_modules/@types/enzyme/index.d.ts","../../../node_modules/@types/enzyme-adapter-react-16/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/lib/rules/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/hoist-non-react-statics/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/is-function/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/jszip/index.d.ts","../../../node_modules/@types/lodash.clamp/index.d.ts","../../../node_modules/@types/lodash.flatten/index.d.ts","../../../node_modules/@types/lodash.throttle/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/npmlog/index.d.ts","../../../node_modules/@types/overlayscrollbars/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/pouchdb-find/index.d.ts","../../../node_modules/@types/pouchdb-core/index.d.ts","../../../node_modules/@types/pouchdb-adapter-http/index.d.ts","../../../node_modules/@types/pouchdb-adapter-idb/index.d.ts","../../../node_modules/@types/pouchdb-adapter-websql/index.d.ts","../../../node_modules/@types/pouchdb-mapreduce/index.d.ts","../../../node_modules/@types/pouchdb-replication/index.d.ts","../../../node_modules/@types/pouchdb-browser/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/pretty-hrtime/index.d.ts","../../../node_modules/@types/q/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/react-dom/index.d.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/@types/react-redux/index.d.ts","../../../node_modules/@types/react-syntax-highlighter/index.d.ts","../../../node_modules/@types/react-test-renderer/index.d.ts","../../../node_modules/@types/react-transition-group/Transition.d.ts","../../../node_modules/@types/react-transition-group/CSSTransition.d.ts","../../../node_modules/@types/react-transition-group/TransitionGroup.d.ts","../../../node_modules/@types/react-transition-group/SwitchTransition.d.ts","../../../node_modules/@types/react-transition-group/config.d.ts","../../../node_modules/@types/react-transition-group/index.d.ts","../../../node_modules/@types/resolve/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/shortid/index.d.ts","../../../node_modules/@types/source-list-map/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/postcss/lib/postcss.d.ts","../../../node_modules/@types/stylelint/index.d.ts","../../../node_modules/@types/tapable/index.d.ts","../../../node_modules/@types/uglify-js/index.d.ts","../../../node_modules/anymatch/index.d.ts","../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/webpack-sources/lib/Source.d.ts","../../../node_modules/@types/webpack-sources/lib/CompatSource.d.ts","../../../node_modules/@types/webpack-sources/lib/ConcatSource.d.ts","../../../node_modules/@types/webpack-sources/lib/OriginalSource.d.ts","../../../node_modules/@types/webpack-sources/lib/PrefixSource.d.ts","../../../node_modules/@types/webpack-sources/lib/RawSource.d.ts","../../../node_modules/@types/webpack-sources/lib/ReplaceSource.d.ts","../../../node_modules/@types/webpack-sources/lib/SizeOnlySource.d.ts","../../../node_modules/@types/webpack-sources/lib/SourceMapSource.d.ts","../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../node_modules/@types/webpack-sources/lib/CachedSource.d.ts","../../../node_modules/@types/webpack-sources/index.d.ts","../../../node_modules/@types/webpack/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"ac3a8c4040e183ce38da69d23b96939112457d1936198e6542672b7963cf0fce","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","eb75e89d63b3b72dd9ca8b0cac801cecae5be352307c004adeaa60bc9d6df51f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"1dad4fe1561d99dfd6709127608b99a76e5c2643626c800434f99c48038567ee","affectsGlobalScope":true},{"version":"a8fe23ae87c3e9d2877032cafeb290f2ebe0c51e216d175a0408b10915ebe9f0","affectsGlobalScope":true},{"version":"cce43d02223f8049864f8568bed322c39424013275cd3bcc3f51492d8b546cb3","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"8dff1b4c2df638fcd976cbb0e636f23ab5968e836cd45084cc31d47d1ab19c49","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"8f4c9f651c8294a2eb1cbd12581fe25bfb901ab1d474bb93cd38c7e2f4be7a30","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"60761e6ea886034af0f294f025a7199360ce4e2c8ba4ec6408bc049cf9b89799","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e","affectsGlobalScope":true},{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"4ee363f83d7be2202f34fcd84c44da71bf3a9329fee8a05f976f75083a52ea94","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"38943ef508ccbc71691ff6c14f30e0468a85a4ec22c9e0a4eea2c9ba8ca19352","affectsGlobalScope":true},"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9","2e345cb6511f4c4c60c274df6626c94f3182939034f06cdf414bfbccc584f822","63ea76eab54e08ce38ada84ddff0b080d6c2e360165071af684b43844b15bda7","98edf9bdfe6c7794349a88d720af3035fd4a68480895e72beaf8ff8e758a33f5","8a2395a5c1a95d05c205b791f012b120b4d02eb50a806e24d69da02c51de9d6f","123b33d472e095eef247713b75d8af051322947c9f82376094e2464f5b2c6c62","3cfca5c9292d8d84fb8f2002fbc638f1ce1116842fcf49da324c3ce428e5ba01","ae8664425db4d0412262eacb152add3880bb26a00b3351c60251836d1b0ff06d","198a7b1868feda59532c0b8c9787a40bc1a016bfeb4f34ac429c72f00d85f480","440c72c435268a4eb551c89fdb9d23b17b8b4313e59865ecff97a45194a4b760","36c864656ff1816fe6bc4bbd36a981ab880e31819010ab32e4c4375a9cd0ffa0","084fe2843779e36cc634a29427dfa6b4ad19bf3fc749a8ab71f8b1845dac8063","e2ed3c88156fb2986622e353fde67b7e215474fc99ad997b0e8f98e9820a2362","590930e5cc30f27e0faadede9dd85b1f36a87345c5502c55c8ad21fe0c4a4972","ead5a4d77393ab3c673b20f171eb4187ed04c17070f6938a52a304ecd9c9f1d9","7c829ae2e0612753dec828fdc84baad4f98a1e0fa60ab79fe101b1020103a26e",{"version":"a139b5f761e657cda95b3a6f938ce7102878b5b39edbb743894d39388d83cc7b","affectsGlobalScope":true},{"version":"513dfbfe04b52253f35007545694c2a99c313fdb6b836bdb8cbc9c7fb0ff6166","affectsGlobalScope":true},{"version":"a4832e26b82049fc2774c96ca6e1c17b2c204246570a62fdbe7e8ee8af2cd4d4","affectsGlobalScope":true},{"version":"6f1f78e8c2a5c7cd2c38aa9cc5da26d9c039f2bbfa753f2a0a54ce41c4dff8d0","affectsGlobalScope":true},"ec89427601297d439c961528832a75017d9356bec2ee42c1d16f2274590d9330","d0b93cf4a086095121a40a8a878f81c72783fc819ad055225a36ef829c6f41d4","50eac108cc307665c28801910626932956adcf8dc0dc70ab1939dd0e8aeb6f28","1a68643644167daaea17e2f89d04edd9d1fec7bf881e4fa3ad4cd43d92447ce1","7255a17d460541e2ccca5f485bb58b6fa64bc750047c5e57ce7abf17cc3f4f3d","571ffdcb677c42d897370ca1a616798670d7715361dc099f713f03c067e8c988","1f8d8388b2da5785ef9c169db1493969f8c9e1ea50e1db1194a21708403f2e10","a299dcd51a18896ffb9f1249507d387a996b8d733cd1ee7c0a5fb46b86f88524","2c3d2bc00ffd291568c89e1ea920cf5c41b6b6a532cdc0bcb74e917eaf133f3b","e7857f874cbc2bd969097918305d8552156d0147d9a03a87e42f8cbd6e1729b5","0de99ed9f5d0a953aabe8de8999b0ce24944f36374d36c06abf9dca6e5567368","a756f87e33897fd95428da3288ed3061182b8678e38b48000c53e5499c7f8863","f68abba533f1aee022d1800ab3ad273e163909b97c171c8eea15fa04e3d02280","9b526aac58282b2b9c1afd1969828336c77a81ca52916214ae63a70e256a8032","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"b76021b49ba5215228c2b3b6db3d829b543156af5d586a4a3eb23fd355cf433b","e5d5ee66044d79018aadeabf3dc39d758d9c45c49c004b3a57b76a974fb346d7","34ef06f1d5e0ae95afb816e93c40f04f93641c11ad06e54b6fbe9335c3238c03","1873db8f2261ba4f248bde3e5bb4c79b1fdc990315054e9604fce8f41ddd1587","7b909a00d8978266be4783a28766711d28d1c76449db5dbac28c26c4e908e1ab","4f1715bd6319db37f4c1c99c8842ff9c9d357ffb5a73020c329463a30909bbaf","ff60413f9896b702b4e653cf85f6f8246e11482ad4d6859997ca9edafed9cc46","b682e653b63b5aa118887e61cd81a78fc45d4ef8fe95d8c6449742919a5638a4","bbc1e78124f19ccf50225278b700436ce64cf92b0c6b1ca15567431a28371b31","1f93a4dd7096a18c6cf99085327b467de58f3cd7f0f941a8bdc1d7ec4284b301","a822e999d9c1814859735e919c2bd2a11f7d3c8633ab6656215dc386684e07bc","724c139fa49ad59be7a4139edc7be1cc528455e30d637172c7781804406a6fcb","1cfe76cc39491c2f2059192c7486297154f0a517fe9b3bd9d223824a5f803573","acc42289b4e6d8d789b9f3a4c48fe601c23ab6fe747080f1dc99787b8e79d256","9de7ce840e4a5b95405a164d166d010eaa99fd631817ea3b0310ec4e22b98d0e","65c0791093075bbb931a7e218aa03c954f634702ecff2ae0b6efc92b71cc6db9","21e1b303e758ec4a1e9f703e1e1be8c47c8dd74034c2369fd01e9bfe1da98acc","cd303995edbd7439d6232f1e7596b38f5d1cd65ec0837e009ceba781aca110f5","33cb56e3cc910266a13ca59281b907459131acc58739c2bd68dab246f8ed01fa","c6d0cb5ad7498c2c977a5340f17bcfcc151609118789bbace2336079f2d9f84a","383d4add4d2b7a9b03bb0b7b9b2f62b70c269e79616b629946b51283c14a92cf","4162810d701126188368ff58526c81e7c4c6a9a32ed26c4b763a5d3535b46748","513b7862a230ed479fb045bbe87d37f9ee91cc20fee15dd4b16c3cc74aa3e514","8ff77a6b5f0b74c681e132e9510f5576a29150ee53b1324efed33d3d7fabd736","7bdf81223f6cfae94a48484223d4b59b8ef609cf680f0fa90941d8e093ff27b0","9fbe4ad05e10d7957283cc4a3aa909e70717c62d51bdc19516ffd75a60c2eaf4","8b423ba6b1f81c80542db7deba332d1938db29f6f127fe169287903abe67fe8d","9c0a4431746ad0073026505df7a5724b4126c0e1f41b90e87c1efa6b8335711d","0ec7fb37f4303f3cac4f35819f0d5d75b3b4692990da2590c63c656729447dfe","ed6fbb1cb7cb8dc283f9d5efa68c17d5a9fc5e32fc481e2be7eccd5077d3afc0","e96e84cd79dac3fb1369911a8e9888308deda9542dcfb19d1540414e9ab64465","616ed304b4a011a969ba5d2aa5fca781d66b3f0c8f3d099e19c7158da36fa07b","163be962fa11ca0e3bc9afd1188701e16f5db0d84f904be3a5327c04bf14c1dc","f51c2abd01bb55990a6c5758c8ec34ea7802952c40c30c3941c75eea15539842","23255560340f60336ff79daf50b3b6432ec0f32f7dd19638d3a2406826a15d49","cbf272d1fef2ab8cca386524e1aa8e06caa3509eb6e724e0008ca613c05e7fdb","f8f0a01a9ec6571933c3b63b6d877d74729fbdab0be2fa87c18999b11357cf32","fca853da554cd762704a9bf8ad62cbf6d55d81c9d69b07b3c8a552367f4976d6","6b8d8f68865166b7f761ccdea7a66018f0452ddb7c6f75bf5cbaa31e6163af8f","d9cef8e439c407166963fa89b317d3ea7367e204035611447c9765786026f03b","ca888feddeab794c01fb1bec893ff46186801a30bca77c8a1aa28477f7e6f839","bb96345dfdd3b0695f5281537427e38fa85cb79449e3c6b59151bb7d753ef6f7","2561fd263d1d42554d0de99369f6fb352981090e2de0966b2e257891abf9977a","b01b764b8b1ce1376a70aa1bde2914093b36810a2a3e60cc9fd8f2741490a8f9","e6047a9c095d3b4a903aea90b49815be068476f1719e76766b7792ee21310f3a","cdcd29d866abedc194a88851871320fbb9c29e1c4868583b1f91ee2786acb818","c02107d9cae7a0c7541e8af0f4e0497650b1494e561e409e7cb90a12bc65ed09","5e62225c303695c8511d3831bca37c141931fd584e3aa1c8c5dd4b57cf01b1d0","1c3dd3b5d7eee485481470a75bd1829ee8e0388e87c8c8f8a8418f702592876a","53336c5924937a0a2a4ba1a515499f48092e4dd853386e77276c0a4ff8a1fa50","5a42225ecf779e7d42b44ff91cd7f842421835f28287e295e42622aa51aeeb6f","baab49106b672deb07dcd3e31333e4a2539970b5db9ee896aedbdba3ca2400e5","2af60becd168c31f931c6839f2cb126713bb0f556780b07959afd04b8311eade","826ea84343ee53323b8b67320019287543a15c1f25ad163552f4adfba79368da","7181cfa9a4f05524e825271e409017810c1bc6a4b9544e05be5bd59ee76ca691","ad9afc2c60e7303174e70e6cbfc1eca63d8a770855d5fa3ddaac8769b9d93658","7e6b3017bd81ce434b27ae46cee6bdc5850db0e0d75e6a1d45c6c23e17eb135b","9304c3176830887fd3bbb010a9542ce549397b63624a51c8e7f2be032adb76e9","6c9c7d76d7f525a366d5ebdb0b42bccfab0ec7bdc0bce4db5b97573ee0970d3e","c7322d04c36fbd32b9035e07416c30073fbadf0bb6c1e855425f12c1df645aee","198c3858acc28364fb1cdf1d99d140fd9e0f3732c57ccd40a1752bcf8f318a0b","0625a691c77d71dd48fc83a59bff500dfbf3bdc1fe9c079b64bcaf078b5158d4",{"version":"662564f7dc409b31c6ad48129d12a1320c132b45bcafd3a990d0f8f545ce0529","affectsGlobalScope":true},"49616c77d1f7669df57e8cc8afccd8454730bd5e3fa785edcfb3c0ba504cca3f","63633f5796c4cf53210ce75f02e5d6e81b88012f5c8832af32c35d0a8b75cdde","e6f131baf721764ea3d7f94d73a1e078ff4df54982bade8208ed953e78dbb043","7a5476648f683b233ff5e4b0d6c1907a42881ce79779558b7af120fd451ddf6b","7f5e51a9247dc8d5b52d14c6bf2e3f003032be57e87dc8f5a9c59acf9df9320b","52e77d26b5166386380e9276c5f52fb18680f66e5a4a67eed34fdf107783667b","c0d5a8d03e616c33141b34b652853538f39829dd7c46a9d6ad6ef921c0cef0a0","c1a916b63cbae678925e9bb8f883b5677c7a70e262c2dab8b26ee53185744ac2","09436f4260e8a8f807a072655de103a54884adca34d322d2873ed00593d4e9d3","f50c83132eb1829b66d235b78e49ee5a406e2b5108842c7d0c5767eb4e29c6bf","0aa10e951a29b411ddf1be528a8a1b34d319d0c6a2a80f51b903878dd7968da2","dba63e1ed9f73a2b64e533a1f8c45a300a508e0b930fead2303eda911aea2d54","701da6cef7cfb24fe28199b5adca4eb10585d59d1ed14d56862d8f9f7f021801","2ceab74277f8e35d481a528c74e2c992429b2b75b8f0873fcd541cab9b210f0f","342c07fe2d82e6174031d7f5ed492bb4437325385969d6933cea1c7900ef7174","710c5421e1ec94c3203fcbca332d80995682ee0def3af1e5f7a30d60d7c1e2c6","18c890754c57644cbdbba6ed84b7cfd3f4784f20aba06b3dcc29fcb65893e079","b9a34b7634ab3d874fc99a2f444e564fa7e49ce7b32209170814552b063266af","1a0bea44c39b03b139ed59df9926a298e2d57e97ffb1ba2cec5727de7c892220","ab9c9b2c940b9e1052aa567a6fd317d52b37163bf84cf6df04edcfd600035952","41c1ead7682f5fcf264b5d151b29c327aebca60f578bbc9107c51690a06febb0","e918f7938ba50c2d1e9db8d710a218f24abd63a93e2fa3d993ad636349316623","7a7b475b9690a7141ed9e0966166cc7143c14b070ec41bdefea2d52640a077bb","536fb1e2b80cceb77644b414e26ce29a8417f94a72f867f57e2e0c2db980a9ce","95a4a081817fe7942a5ab2cd7428da6274c5a6fad8c9b4f89e0267924906a400","b4a1aa4653222f749761a04d379bfe8346d712792e63e1eee48c63b620a256f7","294a05aa649f4f9ec4ca1cd9e0e85ac50eac79d7bff81bc2c188e1d6dd177d7c","ed595d99b267262ce0450ff654b4cc14e83534e4d24f28cd0eeec764352df027","055f5f727509f452213cbd2ad3565bff005fe361f180f5d64528a23e2aa10324","5a078497a9969a984feec8abddacec50c5f77b401479ab60cdbda9baeb5ccaf5","df17392e4c08c4beaef5d10008f739a899a87276a163c963d47bb7ca12d07e6f","f487a69f86458dbb8ec69db147947199767baaa36e611d9cd47d728f608a3699","83f0faa85317d55a37752ce4fd38a395b782cb4db423743389c441af5d96ed6b","a1e1137ff55bbbe3e517fd13c0c56234ae07e9bc227ae6fcd7a056c4de7297bc","e033a41caa47ecb9e50e72489b73ec0e4f014ff1eb105d61d57c21366e51a73e","47c12b9b24e5bfd2879de2e2d1e921b2fd984e11c2086460ef3110408135641d","30d8895714af353ead5757367b7b7133c9ca2ac26d538328d36c33ef75e4f499","a097d47c0df2682d2b63ae7e910eb61331d74c9d4d4d12101287b7c43ef501d4","a0e2b59763191568a387a58737c42c57766f916c50c025e26ade3813d24fadca","822f43a89d4b86e8ae574058e3ab90da80fd6174c658086c0adda11e14249f43","ecb4c71c2c4a1d3f04dc18e53e17f16239cc35e791b384a1c39cdbf89a70f2a4","61d918f4f56b320bf7dace7ba57c4258a133ad879212b70d4d2cde8c294244a4","406b5a7f8b943952b52b4c0f716989546d30f1cc3682129c27ff90086dc6b0ea","a345e40ec66caa5e999bcb4e39443b41024c7dd83dcae1b271dfb9f3baf42fe0","e7c43187ecd8e6fd5ac183d8fab70d262601b83ac8a350f77102e501b70c3399","87c41f16c39f4be59eee74d2cdd8b3285da5238faa7893a507b5e3b96981cc76","f22947fc62ea413bdb41dccd2dc03ad90c517bf1499988e7e4e06dc4cfe4d0e4","8cbb340cf3ddabe63ca08a8a8ee687cbd2e2240efc203829d88d6bfc5442af9f","30e9979007b862c3653edc1bcdd9c3b2daac943d86e5dc45ea4568ed5e717480","ecac33101e9b0de576ced13eed08c3203f13524956f92437a49291cc1aace4f9","ad8c9effc950e5a2051075b274c45876a76ffb88341994b278468e62a4bf39fc","78a9c7b35d8ea1a9e15bb1926726f4d19121b57bc3314ac6e7c659dbca213258","78294e1333be0e2a3c02f253721dacd0c205b12689f9a2992a6b9392c9e8b0f6","7fefa48fa54e87d74f1ebafe6934fb8be19b17ffa65a12d5dea921da09f5fc30","02e8c7670313db815cfc304c046b77fde0ad6d1de4c7f1527a12430ed2b73568","339fa6c313815d88228c93adc09832f4386c890844b6462cbbcde1cea0c47a82","230bc82cfb0df428eee75a194cbd1768a2dcd35ca39d669e771ae31380d5589e","584dc1976391a7579cb93466a54df2263ce0c7a4811897cb9777cbeef22a26c2","3b5f29d4e9827cdfef6b008bc5b00f1458fcb7218097fad40945d90322efa278","00566869cb63f7915307b242d07724f7c28eaa51724c36fcc1662d3b6f62a594","1f20b8737e2c06851c822b26f427fa97cbb687f26b873db7cc1321f8a7f5f787","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","6ac6f24aff52e62c3950461aa17eab26e3a156927858e6b654baef0058b4cd1e",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"414535152cbb6d2ef11c94953a793e18cb23c5329d439dacf66183adf87989fd","fbf3b885d9bab5d9061d4b1edc2ff4fd845ea1c28e5dcd34ac4a43d156161f46","e8575a4f19e59b78357d613c8f27b183872c121daa46f3c9049b9b7396bd2138","39eaa898927709414259421f4310d4a9bbb943b4dcb82c7a5cd75f0142c86273","5f34e74f9d889817c1388da54dbfdb28a36af5676c396fa3041309690bfa9ade","b0e23a13de5e00df2097f3bbc0ba67ecc18946f10222c2d4571814ba718467d7","2f89dab4002cafa419a8385e6cd54f3fd5458a024feb0f79e9967bf4c47157f7","e841f45cbf880c37dfc3279dd87523670ac8bf5477541a682ab10669ae6db0f0","4dfb0de036b79d6c4851ad323b7b8ba8d2eff92099edb928c28e2b8f151b4c73","b59fc967b467026aeb1dc3f3fc02c26b8b0b613212ade066d58cb1050b774da1","b10686e239ffd69ba14643969dd14c8be05f0fabeaff6490637efd034686474a","ff93d23d978deb8df74804b96879aa7e2fdaca27d293bcfca0ef839a252930a1","3d180102848aa50062737ecc8b2cfefb4725850b6e6c17efab1478cbe2819143","cc6194741830edfe6eda4f51dd4b8c2708a14ba1eafd8fc95cbb2f94f699d48b","0637ca78a74b77392effa72e38c2951cce0bb5f7019276f312f85f3d308eb5ef","798f1df6fdd480e16bbf512ebf75471a275f47a677cc006b18273d59216e34d1","53c520b2ebbd7c565fb533caffe747807ae5adbff2f50178a011bad4c334160c","76108eb9ae89a3ce583f93995d52b2e28bc1f5db3bd9824c827e5a7fc4f8fe05","80aef8308811864da7ed1e0eb0eca70497e9a2c953bbaf6db2f98faef2655f20","7044c407773c0900946b7a02f3a0e7e5e79af8b0a32b14aeb419b7beedfb3fcd","20900ee5c3d4afd776a992a65ed50a5e753c45fa3ec485e137b76615a3f4d308","dc0b70f6d69942102028e513dd78c86c81f7fa684dda1468d84e2594cda70f07","2f9b62b40b285588aa0553082a0bce64c704b76a2a4bceb3585332b951936801","63806a25fdfe88534ce4870230a363fdf04ae645e623e7f22fc276fe7c2c470b","dfe82907e094052450cd52013d09dec65d26455971016f9e04fa8f6107207eee","f80c6be079ec1df24ab5e64fc860248767f86421e05de7896a493742486f1ee0","b1eb670eee94eebc06e77d75b6c606491f84d01122b2e9edef4edeb9ea143318","0c9f55f247187045cc1432f0d81c94bcf56fb409acb163d408bfd5a1793447a5","c13e280d244dc0829d954089e1d0446455efdb72fb4bdc2e3f0561ffbc66c905","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","6da9e714516d081abaa435946d77c8d74dba888530412dc71601e83d2c8a512e","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","71c56bdaa82d7ce75a72d3c06c04fe10becec09bd9c4ef21776a2a055d3f428e",{"version":"24ff7ac33bdb941a8cd04408a31ba15fafab9684f751e7e88234813b89712c19","affectsGlobalScope":true},{"version":"3e432cdf56538889e5742d388cdf03d670bfb17f4547dbbb1daf90701ec790d5","affectsGlobalScope":true},"85d545d430795d54a8b2896f67f9aeb7bf19fd74a1469ae0627311eb72f0dfa2","a473cf45c3d9809518f8af913312139d9f4db6887dc554e0d06d0f4e52722e6b","55cb77e6ff3d95a68568446f53d3f1dc8fca753575d7c60471a865685f08dcc3","3d68ecf05475492f041c88395372c3a01b30351619bebcd38287ab185be7f7e4",{"version":"36c956a3a6dc279f1e6b77aa4b97b7b229b7d828102573ef5002de456ff5e1d9","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","6e8b894365ab993dbb55c58542598d1548fdda072c974f98b89c218891e2ba09","ddd6169dff8e5263397a9399ba7ba92521d3959f8f9dcdc27f24403dc7b751ba","508e1e25ca40ea6cde332d3232c826fcd82f456f45ae535d817754684f048f9e",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"8f8f6ee2a0c94077f79439f51640a625ac7e2f5dd6866bd3b5a41705c836adfc","affectsGlobalScope":true},"dda27180d5ff550ace8378f5df0f7a26e616f0c4e310c77e94329e2355f9c255","839421b494b57cd2bc0074e914130277051850eba6def6c25870056e6652640b","12a01de318341fefb7be11f22eb4bf28478a5f137b1b4546c509156e9c158198","88587b5c94b0c4f5d78026e4beeb93383b3933c860d9840b55d6bf47d7b632bb","5aa2a9a778a055cd668ea419ea80ba6e195210eb37d47707a1a58886aa4d80f0","9e8947666e44137405fd378f3a8a0515a492e967e552406c02b991c98c78fc61","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","9e6a556cf660a94faa51f5bce6ed009b9e02373546a4c67925da909f36c039d0","69640cc2e76dad52daeb9914e6b70c5c9a5591a3a65190a2d3ea432cf0015e16","a39a4c527b7a2dc7a2661b711a534c10c76852c5ad6ae320767d3f7d2621b67d","1bb5c9857b2ee32c199dd85bc0f4c0299112485d6e5dc91428eabfdee0dbd68c",{"version":"61dd09b57a0a5cf1486c3ceb3a18ad23babfe602c323035ce3d01544c5e3e0b6","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","662661bbf9ccd869f3bca82d34234b2abdc95c657e2187c35352d42dddb24c2d","5caa645cc390a0a8d5a031072b6b4e49218c17017cd80a63bd2557b19be13c5f","4c4334eb5d8fae83416a361d787b55a5743916aed8af812a909898bc7333e709","352104835f5c468c7d8a277f2c8c02fac239a37cd2293181fe421faa153878d3","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","0953427f9c2498f71dd912fdd8a81b19cf6925de3e1ad67ab9a77b9a0f79bf0b","a4aa075328fe61190b8547e74fae18179591a67fedb2ad274c63044a00716743","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","40c6ed5dc58e1c6afa7dcd23b1697bf290cc5b1170c63d0a4dd12f52aa39291c","71d6da3b0150ecdcd16c08b3b546fe4cc7f53df642eccfeb03c813ee788fae0c","a364b4a8a015ae377052fa4fac94204d79a69d879567f444c7ceff1b7a18482d","c5ec3b97d9db756c689cd11f4a11eaa9e6077b2768e3e9b54ff727a93c03a909","bdb07038733b2d74a75ba9c381dcb92774cd6f161ee125bfa921eae7d883ccc9","ad93e960a3a07dff7394bf0c8a558006a9ff2d0725ab28fc33dec227d4cb251e",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"c14e9e86f18189c7d32b5dd03b4cf3f40bed68f0509dec06d75d41b82c065fe2","ae68a04912ee5a0f589276f9ec60b095f8c40d48128a4575b3fdd7d93806931c","d555cd63a3fc837840db192596273fdf52fb28092b0a33bec98e89a0334b3a4c","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","49daf80661034e07d919f1c716aef69324e34d18a63a282f8100f52c961b58a7",{"version":"42c1b00421aa4d5f03b85a2639c1573d32bd82533f34423bbf1f5fb2b0ddc4d8","affectsGlobalScope":true},"f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","92450d617e92f96354d281c8ed5613fd16cacea79eb60b1e9736494b3c057e69","8a9086357fe289efb682dc925358f30b6312c7219a5ca92212857a0a79612012","92bc42ed0e2d41559513fd457ee30d834c2f0fedb9ed5004c029cbf0ad2f8bd9","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","b1b1adc57093310531ddf3f78b21bda16c30f7319088b0981449476a6616cff3","b6167e00019a8db27428651c58358d8cfac239107f25744e608816ed04361df7",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","3a1e165b22a1cb8df82c44c9a09502fd2b33f160cd277de2cd3a055d8e5c6b27","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","e300bf65972ac08167a72787e19d1b43c285c5424707194d0ba64422f6b02c77","1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","1320ee42b30487cceb6da9f230354fc34826111f76bf12f0ad76c717c12625b0","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","bfe1b52cf71aea9bf8815810cc5d9490fa9617313e3d3c2ee3809a28b80d0bb4","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","de1d6e224048139baf7494237a9231be6bab9e990fb239c7825bfd38b06d8c90","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","abc2748988e07e7e754b43cfcfadca4d45f3449eb4c0be503f13630a3f15f22b","6109487f86bc33b14eebb35cbc878b591328e19657d92bc6c61b667f7f9594c8","96b729b46007058fceb10567283275a023415f724af78e91cab3ac7073c19635","620a033e8ff8ffc3d280c3d78981d8a929d0a8c14574a3b87413d99d7f02fadd","9a6d65d77455efaaaeff945bea30c38b8fe0922b807ba45cd23792392f1bfe76","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","fda7ad096a1619fbae01b3d869cc82e29116f22be50133ac8fb08cee21279acd","9751247ee3bbcf1c63592f0f4dafb44559680b2b3e5736b7f0578c6a737d74c8","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26",{"version":"2d2482647045d334fcfce6eefa3340db2800cb2d0814e7b58d4f3b53c274d8ec","affectsGlobalScope":true},{"version":"f1e1d121f108eb57d576df44fc40e01448e0fc7fec64493b07aa852471b6a59d","affectsGlobalScope":true},{"version":"838524a3cc660f7bbb104ffa15febad659d1ef1633dac47340bfbfcbbbffdb08","affectsGlobalScope":true},{"version":"50a03e74fae4542ecfb326b34517ec2e058aee15bcb60af5b2e41c5e2db0d079","affectsGlobalScope":true},{"version":"d252bde46b7594f8f90a45d59181b08134ee8c4919ebb2ba7088ba26056bf621","affectsGlobalScope":true},{"version":"c892c9c7905dd7435264ca83ff0f3ac7f39a0937ee728acdce4b476ece7d6fd9","affectsGlobalScope":true},{"version":"1abdfe21f6b99b864965f9dc5073c49f0c0f3d5e8e1fe498fb94bd0a479d3afe","affectsGlobalScope":true},"4d737cdd77685ed65bd61d375375cae446fb0f46f711bbb3ef3f81a350212569","65455ea1b00bae7bd26d3c8c2401eb3d10401c09c55192d6f3b8b2275eda20c2","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","62b931417104c7cb35d0725e1869f51d52d7b18462fd58f32f846a314a42ba10","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","c45d6f4d3a20be54e46237608f537a8d85397f87b9c3318d68ed925c2f1d0b51",{"version":"8f19251323456195ec9236df857bac3b8f97b73b540ef06ead2ceccc3884954f","affectsGlobalScope":true},"4370c91e46f6992a89e3979c50434cf932088e1b5ae6e3a5214d778634dea768",{"version":"cffd3848b7af4922d70028c805b7df5e8f0eac4a8d2410b0f55b47ca62c6c3a8","affectsGlobalScope":true},"ef6cede608fc396d0ad86d0240c40989a080c6a4c5b2ac5c84072c7e0ff2942e","30688eab034d1aa3bbe4d8f2c7f462ddaec9f30f1a38a306a4728a9a06a58b11","e03334588c63840b7054accd0b90f29c5890db6a6555ac0869a78a23297f1396","c3052485f32a96bfde75a2976c1238995522584ba464f04ff16a8a40af5e50d1","c220410b8e956fa157ce4e5e6ac871f0f433aa120c334d906ff1f5e2c7369e95","960a68ced7820108787135bdae5265d2cc4b511b7dcfd5b8f213432a8483daf1","ed3b711f533ddb3a5451f4c4bb0df3a0b95e9d0433b3b7834644dd1718d06d31","2880728492d6a6baa55411d14cc42fa55714a24b1d1d27ff9a8a610abd47c761","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","30783d97bd0231ae2c4b9320043d61442a8177e81c7df826a5536b95fdd63280","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","aec0cabbdfacf43db998d8e50ee6f1e72131d24b5018dfb84f14806717baa0a6","e32dad799d088c53cbe1da736e34cad03027d56dd2fc77d484a67100278bc4bd","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","b2f006ee835f315d01c43c0f5d9e9ad78a5870b380899877b32a33078d065dbd",{"version":"3a1e422f919c70fca66e94dc641ad8d9732b3d2533ac047b8a9aaca9eea3aa10","affectsGlobalScope":true},"f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","09c4b2e2d3070239d563fc690f0cc5db04a2d9b66a23e61aef8b5274e3e9910c"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationDir":"./","declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":4,"module":99,"noFallthroughCasesInSwitch":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"target":4},"fileIdsList":[[258],[54],[258,259,260,261,262],[258,260],[72,96],[310],[312],[313,314],[313],[316],[318],[50,311],[320,321,322,323],[324],[276,277,310,325],[277,310],[328],[50],[333],[334],[89,91],[67,68,69,70,71],[229],[217,219,220,221,222,223,224,225,226,227,228,229],[217,218,220,221,222,223,224,225,226,227,228,229],[218,219,220,221,222,223,224,225,226,227,228,229],[217,218,219,221,222,223,224,225,226,227,228,229],[217,218,219,220,222,223,224,225,226,227,228,229],[217,218,219,220,221,223,224,225,226,227,228,229],[217,218,219,220,221,222,224,225,226,227,228,229],[217,218,219,220,221,222,223,225,226,227,228,229],[217,218,219,220,221,222,223,224,226,227,228,229],[217,218,219,220,221,222,223,224,225,227,228,229],[217,218,219,220,221,222,223,224,225,226,228,229],[217,218,219,220,221,222,223,224,225,226,227,229],[217,218,219,220,221,222,223,224,225,226,227,228],[279,299,310,343,344],[279,293,310],[307,308],[276,277,284,293],[268,276,284],[300],[272,277,285],[293],[274,276,284],[276],[276,278,293,299],[277],[284,293,299],[276,277,279,284,293,296,299],[279,296,299],[309],[299],[274,276,293],[266],[298],[291,300,302],[284],[265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306],[290],[276,278,293,299,302],[352],[352,353,354,355,356,357],[317,351],[351,352],[50,330,364],[50,366],[50,368],[368,369,370,371,372],[46,47,48,49],[380],[379],[310,386,387,388,389,390,391,392,393,394,395,396],[385,386,395],[386,395],[377,385,386,395],[386],[272,385,395],[385,386,387,388,389,390,391,392,393,394,396],[272,310,379,382,383,384,397],[400],[85,86],[85,86,87,88],[90],[48,50,51,52,53,55,233,240,241,242,243,247],[51],[51,246,247,250,251],[51,246],[51,205,240,246],[51,95,240,243,246,247,249],[51,243,247,251],[51,242,243,247,248,250,252,253],[51,241],[50,51],[48,50,95,96,99],[48,50],[50,103],[48,50,95,96,99,120],[50,55,96],[50,120],[50,94,95,125,128],[50,55],[50,94,95,126,127],[50,95],[50,104],[50,55,111],[50,112],[50,94,112],[50,112,115],[112,113,114,116],[72,94,99,100,101,102,104,105,106,107,111,117,118,119,120,121,122,123,124,128,129,130,131,132,133,134,137,138,143,144,145,146,147,148,149,150,151,152,153,154],[50,96,99,112,135],[136],[50,139],[139,140,141,142],[48,50,96],[50,97],[97,98],[108],[108,109,110],[158,160,163],[158,160],[50,158,159,160,161,163,164,165,166,167],[158,159,160],[157,158,159],[50,162,164,168],[95,158,159,160,163],[163],[50,158,159,163],[50,162,168],[158,159,160,163,170],[95,158,171,172],[192,193,194],[159,160,161,163,164,165,166,167,168,169,171,173,174,179,191,195],[162,167,168],[167,168],[175,176,177,178],[95],[162,164,165,168],[158,161,164,168,182],[158,162,164,165,168],[158,162,164,165,196],[180,181,183,184,185,186,187,188,189,190],[64],[48,50,54,94,95,155,196,197,206,231],[65,196],[65],[196],[155],[65,94,95,196,197],[94,204],[202,203],[57],[57,58,59,60,61,62,63],[56,65,66,156,197,198,199,200,201,205,232],[48,50,197],[48,50,95,197],[48,50,196,197],[48,50,65],[48,50,95,197,229],[50,208],[207],[50,207],[208,209,210,211,212,213,214,215,216,230],[48],[244,245],[234],[235],[237],[234,236,237,238,239],[77],[92],[73,74,75,76,77,78,79,80,81,82,83,84,93]],"referencedMap":[[260,1],[103,2],[263,3],[259,1],[261,4],[262,1],[264,5],[311,6],[313,7],[315,8],[314,9],[317,10],[319,11],[318,12],[324,13],[321,14],[326,15],[327,16],[329,17],[330,18],[334,19],[335,20],[92,21],[72,22],[337,6],[338,23],[249,23],[339,23],[340,23],[218,24],[219,25],[217,26],[220,27],[221,28],[222,29],[223,30],[224,31],[225,32],[226,33],[227,34],[228,35],[229,36],[341,17],[345,37],[343,38],[309,39],[268,40],[269,41],[270,42],[271,43],[272,44],[273,45],[275,46],[276,46],[277,47],[278,48],[279,49],[280,50],[281,51],[310,52],[282,46],[283,53],[284,54],[287,55],[288,56],[291,46],[292,57],[293,46],[296,58],[307,59],[298,58],[299,60],[301,44],[303,61],[304,44],[347,46],[353,62],[354,62],[355,62],[358,63],[352,64],[351,62],[356,62],[357,65],[125,18],[363,18],[365,66],[366,67],[367,18],[369,68],[371,18],[368,18],[370,68],[373,69],[127,18],[126,18],[50,70],[51,18],[374,6],[381,71],[383,72],[397,73],[396,74],[387,75],[388,76],[389,76],[390,75],[391,75],[392,75],[393,77],[386,78],[394,74],[395,79],[398,80],[401,81],[87,82],[89,83],[88,82],[380,72],[91,84],[248,85],[243,86],[252,87],[255,88],[251,86],[247,89],[250,90],[253,91],[254,92],[242,93],[241,86],[256,94],[257,86],[100,95],[101,96],[102,18],[104,97],[105,96],[106,18],[107,18],[119,18],[118,96],[121,98],[122,99],[123,100],[124,18],[129,101],[131,102],[128,103],[132,18],[133,18],[134,18],[138,18],[144,18],[145,18],[146,18],[120,18],[147,18],[148,104],[149,18],[151,18],[152,18],[153,105],[154,18],[112,106],[113,107],[115,108],[114,107],[116,109],[117,110],[155,111],[136,112],[135,107],[137,113],[140,114],[139,97],[141,18],[142,18],[143,115],[97,116],[98,117],[99,118],[109,119],[108,18],[110,119],[111,120],[170,121],[172,122],[168,123],[161,124],[160,125],[165,126],[166,127],[169,128],[164,129],[167,130],[171,131],[173,132],[195,133],[196,134],[177,135],[178,135],[175,136],[176,136],[179,137],[174,138],[190,139],[181,139],[183,140],[184,141],[185,139],[186,140],[187,139],[188,139],[180,139],[182,142],[189,141],[191,143],[55,2],[65,144],[232,145],[197,146],[199,147],[206,148],[156,149],[198,150],[205,151],[204,152],[58,153],[59,153],[60,153],[61,153],[62,153],[63,153],[64,154],[233,155],[211,156],[212,156],[214,157],[215,158],[216,159],[230,160],[209,161],[210,162],[208,163],[231,164],[245,165],[246,166],[235,167],[236,168],[238,169],[240,170],[78,171],[93,172],[94,173]],"exportedModulesMap":[[260,1],[103,2],[263,3],[259,1],[261,4],[262,1],[264,5],[311,6],[313,7],[315,8],[314,9],[317,10],[319,11],[318,12],[324,13],[321,14],[326,15],[327,16],[329,17],[330,18],[334,19],[335,20],[92,21],[72,22],[337,6],[338,23],[249,23],[339,23],[340,23],[218,24],[219,25],[217,26],[220,27],[221,28],[222,29],[223,30],[224,31],[225,32],[226,33],[227,34],[228,35],[229,36],[341,17],[345,37],[343,38],[309,39],[268,40],[269,41],[270,42],[271,43],[272,44],[273,45],[275,46],[276,46],[277,47],[278,48],[279,49],[280,50],[281,51],[310,52],[282,46],[283,53],[284,54],[287,55],[288,56],[291,46],[292,57],[293,46],[296,58],[307,59],[298,58],[299,60],[301,44],[303,61],[304,44],[347,46],[353,62],[354,62],[355,62],[358,63],[352,64],[351,62],[356,62],[357,65],[125,18],[363,18],[365,66],[366,67],[367,18],[369,68],[371,18],[368,18],[370,68],[373,69],[127,18],[126,18],[50,70],[51,18],[374,6],[381,71],[383,72],[397,73],[396,74],[387,75],[388,76],[389,76],[390,75],[391,75],[392,75],[393,77],[386,78],[394,74],[395,79],[398,80],[401,81],[87,82],[89,83],[88,82],[380,72],[91,84],[248,85],[243,86],[252,87],[255,88],[251,86],[247,89],[250,90],[253,91],[254,92],[242,93],[241,86],[256,94],[257,86],[100,95],[101,96],[102,18],[104,97],[105,96],[106,18],[107,18],[119,18],[118,96],[121,98],[122,99],[123,100],[124,18],[129,101],[131,102],[128,103],[132,18],[133,18],[134,18],[138,18],[144,18],[145,18],[146,18],[120,18],[147,18],[148,104],[149,18],[151,18],[152,18],[153,105],[154,18],[112,106],[113,107],[115,108],[114,107],[116,109],[117,110],[155,111],[136,112],[135,107],[137,113],[140,114],[139,97],[141,18],[142,18],[143,115],[97,116],[98,117],[99,118],[109,119],[108,18],[110,119],[111,120],[170,121],[172,122],[168,123],[161,124],[160,125],[165,126],[166,127],[169,128],[164,129],[167,130],[171,131],[173,132],[195,133],[196,134],[177,135],[178,135],[175,136],[176,136],[179,137],[174,138],[190,139],[181,139],[183,140],[184,141],[185,139],[186,140],[187,139],[188,139],[180,139],[182,142],[189,141],[191,143],[55,2],[65,144],[232,145],[197,146],[199,147],[206,148],[156,149],[198,150],[205,151],[204,152],[58,153],[59,153],[60,153],[61,153],[62,153],[63,153],[64,154],[233,155],[211,156],[212,156],[214,157],[215,158],[216,159],[230,160],[209,161],[210,162],[208,163],[231,164],[245,165],[246,166],[235,167],[236,168],[238,169],[240,170],[78,171],[93,172],[94,173]],"semanticDiagnosticsPerFile":[260,258,54,103,263,259,261,262,264,311,313,315,314,312,317,52,319,318,320,324,321,323,326,327,329,330,331,332,333,334,335,92,68,67,72,70,69,322,336,337,338,249,339,340,218,219,217,220,221,222,223,224,225,226,227,228,229,341,95,325,342,316,344,345,343,308,266,309,267,268,269,270,271,272,273,274,275,276,277,278,265,305,279,280,281,310,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,307,298,299,300,301,302,306,303,304,346,347,348,349,350,353,354,355,358,352,351,356,357,359,360,48,361,362,125,363,365,366,367,369,371,368,370,372,373,127,126,46,50,51,374,375,49,376,71,377,378,381,382,383,328,399,397,396,387,388,389,390,391,392,393,386,394,395,385,398,400,401,384,47,157,85,87,89,88,86,53,96,380,91,90,364,379,10,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,41,37,38,39,40,8,42,43,44,1,9,45,248,243,252,255,251,247,250,253,254,242,241,256,257,100,101,102,104,105,106,107,119,118,121,122,123,124,130,129,131,128,132,133,134,138,144,145,146,120,147,148,149,150,151,152,153,154,112,113,115,114,116,117,155,136,135,137,140,139,141,142,143,97,98,99,109,108,110,111,170,162,172,168,161,158,160,165,163,166,169,159,164,167,171,173,193,194,192,195,196,177,178,175,176,179,174,190,181,183,184,185,186,187,188,180,182,189,191,55,56,65,66,232,197,199,206,156,198,200,201,205,202,203,204,58,59,60,61,62,63,57,64,233,211,212,213,214,215,216,230,209,207,210,208,231,245,244,246,235,236,238,237,234,239,240,73,74,76,75,83,78,77,79,93,80,82,81,84,94]},"version":"4.3.2"}
|