@complat/react-spectra-editor 1.7.0 → 1.8.0

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.
Files changed (111) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/LICENSE +21 -662
  3. package/README.md +5 -0
  4. package/dist/__tests__/fixtures/lc_ms_jcamp.js +2329 -0
  5. package/dist/__tests__/fixtures/lc_ms_jcamp_2.js +2874 -0
  6. package/dist/__tests__/fixtures/lc_ms_jcamp_mz_chemstation.js +3242 -0
  7. package/dist/__tests__/fixtures/lc_ms_jcamp_tic_chemstation.js +854 -0
  8. package/dist/__tests__/fixtures/lc_ms_jcamp_tic_neg.js +1233 -0
  9. package/dist/__tests__/fixtures/lc_ms_jcamp_tic_pos.js +1233 -0
  10. package/dist/__tests__/fixtures/lc_ms_jcamp_uvvis.js +48908 -0
  11. package/dist/__tests__/fixtures/lc_ms_jcamp_uvvis_chemstation.js +15424 -0
  12. package/dist/__tests__/units/components/cmd_bar/r05_submit_btn.test.js +158 -3
  13. package/dist/__tests__/units/components/d3_line_rect.test.js +85 -0
  14. package/dist/__tests__/units/components/d3_multi/multi_focus.test.js +43 -0
  15. package/dist/__tests__/units/components/hplc_viewer.test.js +123 -0
  16. package/dist/__tests__/units/components/panel/info.test.js +55 -15
  17. package/dist/__tests__/units/features/lc-ms/parsing/lcmsCategory.test.js +73 -0
  18. package/dist/__tests__/units/features/lc-ms/submit/peaks.test.js +310 -0
  19. package/dist/actions/curve.js +5 -2
  20. package/dist/actions/hplc_ms.js +66 -0
  21. package/dist/actions/integration.js +17 -2
  22. package/dist/actions/ui.js +39 -11
  23. package/dist/app.js +21 -8
  24. package/dist/components/cmd_bar/01_viewer.js +15 -11
  25. package/dist/components/cmd_bar/03_peak.js +25 -16
  26. package/dist/components/cmd_bar/04_integration.js +116 -17
  27. package/dist/components/cmd_bar/08_peak_group.js +83 -0
  28. package/dist/components/cmd_bar/collapsible_toolbar_group.js +101 -0
  29. package/dist/components/cmd_bar/common.js +4 -3
  30. package/dist/components/cmd_bar/index.js +76 -18
  31. package/dist/components/cmd_bar/r01_layout.js +6 -0
  32. package/dist/components/cmd_bar/r02_scan.js +15 -11
  33. package/dist/components/cmd_bar/r03_threshold.js +19 -3
  34. package/dist/components/cmd_bar/r04_submit.js +61 -6
  35. package/dist/components/cmd_bar/r05_submit_btn.js +60 -13
  36. package/dist/components/cmd_bar/r06_predict_btn.js +4 -4
  37. package/dist/components/cmd_bar/r07_wavelength_btn.js +10 -9
  38. package/dist/components/cmd_bar/r09_detector.js +2 -2
  39. package/dist/components/cmd_bar/tri_btn.js +4 -1
  40. package/dist/components/common/draw.js +6 -5
  41. package/dist/components/d3_line/index.js +70 -15
  42. package/dist/components/d3_line/line_focus.js +104 -67
  43. package/dist/components/d3_line_rect/index.js +836 -0
  44. package/dist/components/d3_line_rect/line_focus.js +526 -0
  45. package/dist/components/d3_line_rect/multi_focus.js +433 -0
  46. package/dist/components/d3_line_rect/rect_focus.js +247 -0
  47. package/dist/components/d3_multi/index.js +154 -163
  48. package/dist/components/d3_multi/multi_focus.js +117 -68
  49. package/dist/components/d3_rect/index.js +6 -0
  50. package/dist/components/d3_rect/rect_focus.js +17 -5
  51. package/dist/components/hplc_viewer.js +169 -0
  52. package/dist/components/lc_ms_uv_tools_bar.js +175 -0
  53. package/dist/components/multi_jcamps_viewer.js +17 -5
  54. package/dist/components/panel/compare.js +84 -62
  55. package/dist/components/panel/cyclic_voltamery_data.js +15 -14
  56. package/dist/components/panel/graph_selection.js +32 -30
  57. package/dist/components/panel/index.js +28 -22
  58. package/dist/components/panel/info.js +90 -31
  59. package/dist/constants/action_type.js +23 -2
  60. package/dist/constants/list_graph.js +16 -0
  61. package/dist/constants/list_layout.js +2 -1
  62. package/dist/constants/list_ui.js +5 -2
  63. package/dist/features/lc-ms/entities/extractEntityLCMS.js +187 -0
  64. package/dist/features/lc-ms/parsing/chemstation.js +108 -0
  65. package/dist/features/lc-ms/parsing/index.js +46 -0
  66. package/dist/features/lc-ms/parsing/lcmsCategory.js +44 -0
  67. package/dist/features/lc-ms/parsing/lcmsJcampInfo.js +18 -0
  68. package/dist/features/lc-ms/parsing/lcmsMsPage.js +241 -0
  69. package/dist/features/lc-ms/parsing/pageValue.js +27 -0
  70. package/dist/features/lc-ms/submit/index.js +24 -0
  71. package/dist/features/lc-ms/submit/peaks.js +66 -0
  72. package/dist/features/lc-ms/ui/wavelengthSelect.js +54 -0
  73. package/dist/fn.js +4 -1
  74. package/dist/helpers/brush.js +74 -19
  75. package/dist/helpers/calc.js +4 -2
  76. package/dist/helpers/cfg.js +5 -4
  77. package/dist/helpers/chem.js +449 -71
  78. package/dist/helpers/compass.js +181 -17
  79. package/dist/helpers/extractEntityLCMS.js +24 -0
  80. package/dist/helpers/extractParams.js +118 -33
  81. package/dist/helpers/extractPeaksEdit.js +29 -9
  82. package/dist/helpers/format.js +189 -4
  83. package/dist/helpers/init.js +25 -5
  84. package/dist/helpers/integration.js +130 -17
  85. package/dist/helpers/integration_draft.js +43 -0
  86. package/dist/helpers/integration_focus.js +155 -0
  87. package/dist/helpers/integration_jcamp.js +68 -0
  88. package/dist/helpers/integration_split.js +202 -0
  89. package/dist/helpers/mount.js +8 -1
  90. package/dist/helpers/sweep.js +39 -0
  91. package/dist/index.js +284 -26
  92. package/dist/layer_content.js +17 -3
  93. package/dist/layer_init.js +124 -14
  94. package/dist/layer_prism.js +31 -5
  95. package/dist/reducers/index.js +3 -1
  96. package/dist/reducers/reducer_curve.js +54 -36
  97. package/dist/reducers/reducer_hplc_ms/hydrate.js +289 -0
  98. package/dist/reducers/reducer_hplc_ms/index.js +122 -0
  99. package/dist/reducers/reducer_hplc_ms/persistence.js +74 -0
  100. package/dist/reducers/reducer_hplc_ms/tic.js +70 -0
  101. package/dist/reducers/reducer_hplc_ms/utils.js +70 -0
  102. package/dist/reducers/reducer_hplc_ms/uvvis.js +377 -0
  103. package/dist/reducers/reducer_integration.js +265 -7
  104. package/dist/reducers/reducer_layout.js +1 -1
  105. package/dist/reducers/reducer_submit.js +2 -1
  106. package/dist/reducers/reducer_ui.js +149 -13
  107. package/dist/reducers/undo_redo_config.js +2 -2
  108. package/dist/sagas/saga_lcms_ui.js +85 -0
  109. package/dist/sagas/saga_ui.js +177 -74
  110. package/dist/setupTests.js +5 -5
  111. package/package.json +10 -7
@@ -0,0 +1,854 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ const lcMsTicChemstationJcamp = `
8
+ ##TITLE=Spectrum
9
+ ##JCAMP-DX=5.00 $$ chemotion-converter-app (1.8.0)
10
+ ##DATA TYPE=MASS TIC
11
+ ##DATA CLASS=XYPOINTS
12
+ ##ORIGIN=
13
+ ##OWNER=
14
+ ##XUNITS=MINUTES
15
+ ##YUNITS=Intensity
16
+ ##FIRSTX=1.1228166666666666
17
+ ##LASTX=13.982933333333333
18
+ ##MINX=1.1228166666666666
19
+ ##MAXX=13.982933333333333
20
+ ##MINY=477198.0
21
+ ##MAXY=4132871.0
22
+ ##NPOINTS=824
23
+ ##FIRSTY=3027291.0
24
+ ##XUNITS=MINUTES
25
+ ##YUNITS=Intensity
26
+ ##XYDATA=(XY..XY)
27
+ 1.1228166666666666, 3027291.0
28
+ 1.1384333333333334, 2614443.0
29
+ 1.1540666666666666, 2082582.0
30
+ 1.1696833333333334, 1742539.0
31
+ 1.1853166666666666, 1478134.0
32
+ 1.2009333333333334, 1230975.0
33
+ 1.2165666666666666, 990282.0
34
+ 1.2321833333333334, 785095.0
35
+ 1.2478166666666666, 644776.0
36
+ 1.26345, 557032.0
37
+ 1.2790666666666666, 512268.0
38
+ 1.2947, 528879.0
39
+ 1.3103166666666666, 589122.0
40
+ 1.32595, 658357.0
41
+ 1.3415666666666666, 728136.0
42
+ 1.3572, 838817.0
43
+ 1.3728166666666666, 1021997.0
44
+ 1.38845, 1209182.0
45
+ 1.4040833333333333, 1341838.0
46
+ 1.4197, 1379396.0
47
+ 1.4353333333333333, 1335289.0
48
+ 1.45095, 1232215.0
49
+ 1.4665833333333333, 1085246.0
50
+ 1.4822, 914457.0
51
+ 1.4978333333333333, 787833.0
52
+ 1.51345, 701870.0
53
+ 1.5290833333333333, 663660.0
54
+ 1.5447166666666667, 651376.0
55
+ 1.5603333333333333, 634980.0
56
+ 1.5759666666666667, 611165.0
57
+ 1.5915833333333333, 575253.0
58
+ 1.6072166666666667, 545924.0
59
+ 1.6228333333333333, 541170.0
60
+ 1.6384666666666667, 537490.0
61
+ 1.6540833333333333, 545300.0
62
+ 1.6697166666666667, 570381.0
63
+ 1.68535, 597520.0
64
+ 1.7009666666666667, 630019.0
65
+ 1.7166, 697538.0
66
+ 1.7322166666666667, 779904.0
67
+ 1.74785, 862025.0
68
+ 1.7634666666666667, 892511.0
69
+ 1.7791, 864337.0
70
+ 1.7947166666666667, 781954.0
71
+ 1.81035, 682217.0
72
+ 1.8259833333333333, 592779.0
73
+ 1.8416, 536641.0
74
+ 1.8572333333333333, 512153.0
75
+ 1.87285, 506504.0
76
+ 1.8884833333333333, 504130.0
77
+ 1.9041, 504854.0
78
+ 1.9197333333333333, 495848.0
79
+ 1.93535, 488605.0
80
+ 1.9509833333333333, 483000.0
81
+ 1.9666166666666667, 480113.0
82
+ 1.9822333333333333, 479653.0
83
+ 1.9978666666666667, 477198.0
84
+ 2.0134833333333333, 485124.0
85
+ 2.0291166666666665, 501710.0
86
+ 2.0447333333333333, 530744.0
87
+ 2.0603666666666665, 544189.0
88
+ 2.0759833333333333, 546513.0
89
+ 2.0916166666666665, 537257.0
90
+ 2.10725, 521294.0
91
+ 2.1228666666666665, 513657.0
92
+ 2.1385, 507896.0
93
+ 2.1541166666666665, 508118.0
94
+ 2.16975, 500653.0
95
+ 2.1853666666666665, 492561.0
96
+ 2.201, 488516.0
97
+ 2.2166166666666665, 486260.0
98
+ 2.23225, 480984.0
99
+ 2.2478833333333332, 567749.0
100
+ 2.2635, 1094638.0
101
+ 2.2791333333333332, 2121084.0
102
+ 2.29475, 3250745.0
103
+ 2.3103833333333332, 3977718.0
104
+ 2.326, 4132871.0
105
+ 2.3416333333333332, 3977565.0
106
+ 2.35725, 3822055.0
107
+ 2.3728833333333332, 3695496.0
108
+ 2.388516666666667, 3577773.0
109
+ 2.4041333333333332, 3505302.0
110
+ 2.419766666666667, 3536560.0
111
+ 2.4353833333333332, 3620983.0
112
+ 2.451016666666667, 3730384.0
113
+ 2.4666333333333332, 3778269.0
114
+ 2.482266666666667, 3779607.0
115
+ 2.4978833333333332, 3699801.0
116
+ 2.513516666666667, 3563842.0
117
+ 2.52915, 3387448.0
118
+ 2.544766666666667, 3265793.0
119
+ 2.5604, 3230421.0
120
+ 2.576016666666667, 3252470.0
121
+ 2.59165, 3261668.0
122
+ 2.607266666666667, 3221924.0
123
+ 2.6229, 3153837.0
124
+ 2.638516666666667, 3083530.0
125
+ 2.65415, 2987816.0
126
+ 2.669783333333333, 2921710.0
127
+ 2.6854, 2893382.0
128
+ 2.701033333333333, 2881821.0
129
+ 2.71665, 2851241.0
130
+ 2.732283333333333, 2805834.0
131
+ 2.7479, 2781692.0
132
+ 2.763533333333333, 2791255.0
133
+ 2.77915, 2781220.0
134
+ 2.794783333333333, 2709204.0
135
+ 2.810416666666667, 2612720.0
136
+ 2.826033333333333, 2528109.0
137
+ 2.841666666666667, 2511209.0
138
+ 2.857283333333333, 2520025.0
139
+ 2.872916666666667, 2535926.0
140
+ 2.888533333333333, 2508578.0
141
+ 2.904166666666667, 2461555.0
142
+ 2.919783333333333, 2422748.0
143
+ 2.935416666666667, 2425836.0
144
+ 2.95105, 2418145.0
145
+ 2.966666666666667, 2405712.0
146
+ 2.9823, 2374387.0
147
+ 2.997916666666667, 2365666.0
148
+ 3.01355, 2345078.0
149
+ 3.029166666666667, 2311669.0
150
+ 3.0448, 2238755.0
151
+ 3.060416666666667, 2167696.0
152
+ 3.07605, 2109982.0
153
+ 3.091683333333333, 2091036.0
154
+ 3.1073, 2082461.0
155
+ 3.122933333333333, 2063997.0
156
+ 3.13855, 2069826.0
157
+ 3.154183333333333, 2029586.0
158
+ 3.1698, 1981975.0
159
+ 3.185433333333333, 1906529.0
160
+ 3.20105, 1860407.0
161
+ 3.216683333333333, 1834368.0
162
+ 3.2323166666666667, 1834444.0
163
+ 3.247933333333333, 1821507.0
164
+ 3.2635666666666667, 1811418.0
165
+ 3.279183333333333, 1781011.0
166
+ 3.2948166666666667, 1729245.0
167
+ 3.310433333333333, 1679472.0
168
+ 3.3260666666666667, 1666131.0
169
+ 3.341683333333333, 1679344.0
170
+ 3.3573166666666667, 1715558.0
171
+ 3.372933333333333, 1727502.0
172
+ 3.3885666666666667, 1726321.0
173
+ 3.4042, 1708895.0
174
+ 3.4198166666666667, 1682731.0
175
+ 3.43545, 1632539.0
176
+ 3.4510666666666667, 1578627.0
177
+ 3.4667, 1536472.0
178
+ 3.4823166666666667, 1531451.0
179
+ 3.49795, 1544597.0
180
+ 3.5135833333333335, 1543167.0
181
+ 3.5292, 1523978.0
182
+ 3.5448333333333335, 1500362.0
183
+ 3.56045, 1507339.0
184
+ 3.5760833333333335, 1519666.0
185
+ 3.5917, 1525841.0
186
+ 3.6073333333333335, 1546951.0
187
+ 3.62295, 1505702.0
188
+ 3.6385833333333335, 1474489.0
189
+ 3.6542, 1446277.0
190
+ 3.6698333333333335, 1407618.0
191
+ 3.6854666666666667, 1381116.0
192
+ 3.7010833333333335, 1363704.0
193
+ 3.7167166666666667, 1333686.0
194
+ 3.7323333333333335, 1293671.0
195
+ 3.7479666666666667, 1254680.0
196
+ 3.7635833333333335, 1225866.0
197
+ 3.7792166666666667, 1217591.0
198
+ 3.7948333333333335, 1216820.0
199
+ 3.8104666666666667, 1201668.0
200
+ 3.8261, 1182382.0
201
+ 3.8417166666666667, 1192744.0
202
+ 3.85735, 1189250.0
203
+ 3.8729666666666667, 1151714.0
204
+ 3.8886, 1118104.0
205
+ 3.9042166666666667, 1080910.0
206
+ 3.91985, 1044189.0
207
+ 3.9354666666666667, 1038374.0
208
+ 3.9511, 1019469.0
209
+ 3.9667333333333334, 1000380.0
210
+ 3.98235, 987682.0
211
+ 3.9979833333333334, 962935.0
212
+ 4.0136, 934536.0
213
+ 4.029233333333333, 911706.0
214
+ 4.04485, 877584.0
215
+ 4.060483333333333, 849361.0
216
+ 4.0761, 833012.0
217
+ 4.091733333333333, 822915.0
218
+ 4.107366666666667, 796870.0
219
+ 4.122983333333333, 759443.0
220
+ 4.138616666666667, 716767.0
221
+ 4.154233333333333, 690625.0
222
+ 4.169866666666667, 672528.0
223
+ 4.185483333333333, 653928.0
224
+ 4.201116666666667, 632407.0
225
+ 4.216733333333333, 598961.0
226
+ 4.232366666666667, 567746.0
227
+ 4.248, 549265.0
228
+ 4.263616666666667, 538651.0
229
+ 4.27925, 524668.0
230
+ 4.294866666666667, 509193.0
231
+ 4.3105, 496929.0
232
+ 4.326116666666667, 500091.0
233
+ 4.34175, 501994.0
234
+ 4.357366666666667, 514138.0
235
+ 4.373, 514169.0
236
+ 4.388633333333333, 515864.0
237
+ 4.40425, 503415.0
238
+ 4.419883333333333, 492056.0
239
+ 4.4355, 487509.0
240
+ 4.451133333333333, 484782.0
241
+ 4.46675, 488834.0
242
+ 4.482383333333333, 499331.0
243
+ 4.498, 503866.0
244
+ 4.513633333333333, 495993.0
245
+ 4.5292666666666666, 482388.0
246
+ 4.544883333333333, 478108.0
247
+ 4.5605166666666666, 482133.0
248
+ 4.576133333333333, 496253.0
249
+ 4.5917666666666666, 497054.0
250
+ 4.607383333333333, 507124.0
251
+ 4.6230166666666666, 514423.0
252
+ 4.638633333333333, 520555.0
253
+ 4.6542666666666666, 516793.0
254
+ 4.6699, 521496.0
255
+ 4.6855166666666666, 524679.0
256
+ 4.70115, 525565.0
257
+ 4.7167666666666666, 522776.0
258
+ 4.7324, 526169.0
259
+ 4.7480166666666666, 523587.0
260
+ 4.76365, 522761.0
261
+ 4.7792666666666666, 526616.0
262
+ 4.7949, 533056.0
263
+ 4.810533333333334, 537231.0
264
+ 4.82615, 542475.0
265
+ 4.841783333333334, 545512.0
266
+ 4.8574, 549356.0
267
+ 4.873033333333334, 545543.0
268
+ 4.88865, 547490.0
269
+ 4.904283333333334, 539361.0
270
+ 4.9199, 536606.0
271
+ 4.935533333333334, 534892.0
272
+ 4.9511666666666665, 538026.0
273
+ 4.966783333333334, 538860.0
274
+ 4.9824166666666665, 558108.0
275
+ 4.998033333333334, 571710.0
276
+ 5.0136666666666665, 579944.0
277
+ 5.029283333333334, 580532.0
278
+ 5.0449166666666665, 572076.0
279
+ 5.060533333333334, 568173.0
280
+ 5.0761666666666665, 573605.0
281
+ 5.0918, 586438.0
282
+ 5.1074166666666665, 592043.0
283
+ 5.12305, 597088.0
284
+ 5.1386666666666665, 595058.0
285
+ 5.1543, 588554.0
286
+ 5.1699166666666665, 587815.0
287
+ 5.18555, 590679.0
288
+ 5.2011666666666665, 594384.0
289
+ 5.2168, 593084.0
290
+ 5.232433333333334, 586765.0
291
+ 5.24805, 572991.0
292
+ 5.263683333333334, 567962.0
293
+ 5.2793, 576558.0
294
+ 5.294933333333334, 598103.0
295
+ 5.31055, 621708.0
296
+ 5.326183333333334, 644920.0
297
+ 5.3418, 666362.0
298
+ 5.357433333333334, 679629.0
299
+ 5.373066666666666, 681871.0
300
+ 5.388683333333334, 676889.0
301
+ 5.404316666666666, 673815.0
302
+ 5.419933333333334, 676363.0
303
+ 5.435566666666666, 672539.0
304
+ 5.451183333333334, 668464.0
305
+ 5.466816666666666, 671287.0
306
+ 5.482433333333334, 674494.0
307
+ 5.498066666666666, 690529.0
308
+ 5.5137, 716464.0
309
+ 5.529316666666666, 732221.0
310
+ 5.54495, 735378.0
311
+ 5.560566666666666, 725853.0
312
+ 5.5762, 722418.0
313
+ 5.591816666666666, 728436.0
314
+ 5.60745, 750516.0
315
+ 5.623066666666666, 774033.0
316
+ 5.6387, 778783.0
317
+ 5.654333333333334, 765642.0
318
+ 5.66995, 767533.0
319
+ 5.685583333333334, 780458.0
320
+ 5.7012, 780830.0
321
+ 5.716833333333334, 790233.0
322
+ 5.73245, 802003.0
323
+ 5.748083333333334, 831979.0
324
+ 5.7637, 874803.0
325
+ 5.779333333333334, 927209.0
326
+ 5.794966666666666, 956723.0
327
+ 5.810583333333334, 947911.0
328
+ 5.826216666666666, 942123.0
329
+ 5.841833333333334, 943717.0
330
+ 5.857466666666666, 959656.0
331
+ 5.873083333333334, 969905.0
332
+ 5.888716666666666, 988802.0
333
+ 5.904333333333334, 987775.0
334
+ 5.919966666666666, 975049.0
335
+ 5.9356, 967765.0
336
+ 5.951216666666666, 988333.0
337
+ 5.96685, 1018846.0
338
+ 5.982466666666666, 1036367.0
339
+ 5.9981, 1051463.0
340
+ 6.013716666666666, 1054954.0
341
+ 6.02935, 1071748.0
342
+ 6.044966666666666, 1137288.0
343
+ 6.0606, 1216454.0
344
+ 6.076233333333334, 1262743.0
345
+ 6.09185, 1262913.0
346
+ 6.107483333333334, 1222788.0
347
+ 6.1231, 1212368.0
348
+ 6.138733333333334, 1224889.0
349
+ 6.15435, 1267633.0
350
+ 6.169983333333334, 1315717.0
351
+ 6.1856, 1360717.0
352
+ 6.201233333333334, 1395930.0
353
+ 6.216866666666666, 1399331.0
354
+ 6.232483333333334, 1401614.0
355
+ 6.248116666666666, 1419447.0
356
+ 6.263733333333334, 1424877.0
357
+ 6.279366666666666, 1442115.0
358
+ 6.294983333333334, 1440783.0
359
+ 6.310616666666666, 1448305.0
360
+ 6.326233333333334, 1462158.0
361
+ 6.341866666666666, 1496940.0
362
+ 6.3575, 1533902.0
363
+ 6.373116666666666, 1549829.0
364
+ 6.38875, 1556861.0
365
+ 6.404366666666666, 1573984.0
366
+ 6.42, 1601610.0
367
+ 6.435616666666666, 1643414.0
368
+ 6.45125, 1700486.0
369
+ 6.466866666666666, 1752432.0
370
+ 6.4825, 1791523.0
371
+ 6.4981333333333335, 1805182.0
372
+ 6.51375, 1809779.0
373
+ 6.5293833333333335, 1816863.0
374
+ 6.545, 1838288.0
375
+ 6.5606333333333335, 1846521.0
376
+ 6.57625, 1836179.0
377
+ 6.5918833333333335, 1771701.0
378
+ 6.6075, 1624129.0
379
+ 6.6231333333333335, 1411741.0
380
+ 6.638766666666666, 1194460.0
381
+ 6.6543833333333335, 1045545.0
382
+ 6.670016666666666, 963927.0
383
+ 6.6856333333333335, 936428.0
384
+ 6.701266666666666, 925647.0
385
+ 6.7168833333333335, 927296.0
386
+ 6.732516666666666, 918393.0
387
+ 6.7481333333333335, 911196.0
388
+ 6.763766666666666, 918224.0
389
+ 6.7794, 923920.0
390
+ 6.795016666666666, 941422.0
391
+ 6.81065, 949774.0
392
+ 6.826266666666666, 954326.0
393
+ 6.8419, 951391.0
394
+ 6.857516666666666, 953815.0
395
+ 6.87315, 963994.0
396
+ 6.888766666666666, 985386.0
397
+ 6.9044, 993285.0
398
+ 6.9200333333333335, 988325.0
399
+ 6.93565, 978162.0
400
+ 6.9512833333333335, 990768.0
401
+ 6.9669, 1008097.0
402
+ 6.9825333333333335, 1022499.0
403
+ 6.99815, 1025604.0
404
+ 7.0137833333333335, 1017623.0
405
+ 7.0294, 1023656.0
406
+ 7.0450333333333335, 1034942.0
407
+ 7.060666666666667, 1046617.0
408
+ 7.0762833333333335, 1047073.0
409
+ 7.091916666666667, 1052869.0
410
+ 7.1075333333333335, 1040617.0
411
+ 7.123166666666667, 1020599.0
412
+ 7.1387833333333335, 994837.0
413
+ 7.154416666666667, 988807.0
414
+ 7.1700333333333335, 996655.0
415
+ 7.185666666666667, 1016500.0
416
+ 7.2013, 1022917.0
417
+ 7.216916666666667, 1006165.0
418
+ 7.23255, 985740.0
419
+ 7.248166666666667, 954512.0
420
+ 7.2638, 928716.0
421
+ 7.279416666666667, 900485.0
422
+ 7.29505, 889046.0
423
+ 7.310666666666667, 885434.0
424
+ 7.3263, 891300.0
425
+ 7.341933333333333, 908041.0
426
+ 7.35755, 942331.0
427
+ 7.373183333333333, 967922.0
428
+ 7.3888, 964411.0
429
+ 7.404433333333333, 950357.0
430
+ 7.42005, 954155.0
431
+ 7.435683333333333, 975609.0
432
+ 7.4513, 982689.0
433
+ 7.466933333333333, 997918.0
434
+ 7.482566666666667, 1008056.0
435
+ 7.498183333333333, 1034309.0
436
+ 7.513816666666667, 1043518.0
437
+ 7.529433333333333, 1069215.0
438
+ 7.545066666666667, 1077456.0
439
+ 7.560683333333333, 1072581.0
440
+ 7.576316666666667, 1049690.0
441
+ 7.591933333333333, 1027512.0
442
+ 7.607566666666667, 989609.0
443
+ 7.6232, 963781.0
444
+ 7.638816666666667, 960949.0
445
+ 7.65445, 965541.0
446
+ 7.670066666666667, 965037.0
447
+ 7.6857, 955544.0
448
+ 7.701316666666667, 937154.0
449
+ 7.71695, 934596.0
450
+ 7.732566666666667, 942224.0
451
+ 7.7482, 947721.0
452
+ 7.763833333333333, 947635.0
453
+ 7.77945, 917692.0
454
+ 7.795083333333333, 891851.0
455
+ 7.8107, 877575.0
456
+ 7.826333333333333, 875091.0
457
+ 7.84195, 871737.0
458
+ 7.857583333333333, 856706.0
459
+ 7.8732, 855489.0
460
+ 7.888833333333333, 849403.0
461
+ 7.904466666666667, 871359.0
462
+ 7.920083333333333, 889146.0
463
+ 7.935716666666667, 906418.0
464
+ 7.951333333333333, 919152.0
465
+ 7.966966666666667, 920090.0
466
+ 7.982583333333333, 923353.0
467
+ 7.998216666666667, 920744.0
468
+ 8.013833333333332, 925997.0
469
+ 8.029466666666666, 943905.0
470
+ 8.0451, 955196.0
471
+ 8.060716666666666, 962580.0
472
+ 8.07635, 956503.0
473
+ 8.091966666666666, 965084.0
474
+ 8.1076, 990140.0
475
+ 8.123216666666666, 1005665.0
476
+ 8.13885, 1017590.0
477
+ 8.154466666666666, 1003428.0
478
+ 8.1701, 982662.0
479
+ 8.185716666666666, 980715.0
480
+ 8.20135, 993517.0
481
+ 8.216983333333333, 1001491.0
482
+ 8.2326, 1011077.0
483
+ 8.248233333333333, 1026441.0
484
+ 8.26385, 1004456.0
485
+ 8.279483333333333, 972309.0
486
+ 8.2951, 965304.0
487
+ 8.310733333333333, 967268.0
488
+ 8.326366666666667, 974789.0
489
+ 8.341983333333333, 979619.0
490
+ 8.357616666666667, 991311.0
491
+ 8.373233333333333, 1008523.0
492
+ 8.388866666666667, 1040266.0
493
+ 8.404483333333333, 1066292.0
494
+ 8.420116666666667, 1083339.0
495
+ 8.435733333333333, 1097821.0
496
+ 8.451366666666667, 1089432.0
497
+ 8.466983333333333, 1100057.0
498
+ 8.482616666666667, 1091442.0
499
+ 8.49825, 1090298.0
500
+ 8.513866666666667, 1073300.0
501
+ 8.5295, 1066597.0
502
+ 8.545116666666667, 1067119.0
503
+ 8.56075, 1083095.0
504
+ 8.576366666666667, 1102409.0
505
+ 8.592, 1121049.0
506
+ 8.607616666666667, 1124128.0
507
+ 8.62325, 1116666.0
508
+ 8.638883333333334, 1112904.0
509
+ 8.6545, 1118485.0
510
+ 8.670133333333334, 1114523.0
511
+ 8.68575, 1092789.0
512
+ 8.701383333333334, 1083640.0
513
+ 8.717, 1081444.0
514
+ 8.732633333333334, 1103948.0
515
+ 8.74825, 1127493.0
516
+ 8.763883333333334, 1127583.0
517
+ 8.779516666666666, 1116046.0
518
+ 8.795133333333334, 1106494.0
519
+ 8.810766666666666, 1108317.0
520
+ 8.826383333333334, 1107114.0
521
+ 8.842016666666666, 1111896.0
522
+ 8.857633333333334, 1113666.0
523
+ 8.873266666666666, 1125209.0
524
+ 8.888883333333334, 1141975.0
525
+ 8.904516666666666, 1147064.0
526
+ 8.92015, 1126494.0
527
+ 8.935766666666666, 1100549.0
528
+ 8.9514, 1058374.0
529
+ 8.967016666666666, 1026308.0
530
+ 8.98265, 989858.0
531
+ 8.998266666666666, 980034.0
532
+ 9.0139, 987556.0
533
+ 9.029516666666666, 1001551.0
534
+ 9.04515, 1016437.0
535
+ 9.060783333333333, 1017225.0
536
+ 9.0764, 1018708.0
537
+ 9.092033333333333, 1000758.0
538
+ 9.10765, 991149.0
539
+ 9.123283333333333, 989861.0
540
+ 9.1389, 1003479.0
541
+ 9.154533333333333, 1024056.0
542
+ 9.17015, 1018166.0
543
+ 9.185783333333333, 1005859.0
544
+ 9.201416666666667, 997106.0
545
+ 9.217033333333333, 985671.0
546
+ 9.232666666666667, 1001174.0
547
+ 9.248283333333333, 1013208.0
548
+ 9.263916666666667, 1023296.0
549
+ 9.279533333333333, 1010283.0
550
+ 9.295166666666667, 1002577.0
551
+ 9.310783333333333, 1010931.0
552
+ 9.326416666666667, 1026435.0
553
+ 9.34205, 1039343.0
554
+ 9.357666666666667, 1049742.0
555
+ 9.3733, 1055874.0
556
+ 9.388916666666667, 1047890.0
557
+ 9.40455, 1031519.0
558
+ 9.420166666666667, 1019506.0
559
+ 9.4358, 1023747.0
560
+ 9.451416666666667, 1034092.0
561
+ 9.46705, 1051490.0
562
+ 9.482683333333334, 1077113.0
563
+ 9.4983, 1083682.0
564
+ 9.513933333333334, 1079585.0
565
+ 9.52955, 1077114.0
566
+ 9.545183333333334, 1085600.0
567
+ 9.5608, 1087000.0
568
+ 9.576433333333334, 1097770.0
569
+ 9.59205, 1102507.0
570
+ 9.607683333333334, 1121903.0
571
+ 9.623316666666666, 1133405.0
572
+ 9.638933333333334, 1158856.0
573
+ 9.654566666666666, 1183132.0
574
+ 9.670183333333334, 1197059.0
575
+ 9.685816666666666, 1222880.0
576
+ 9.701433333333334, 1240759.0
577
+ 9.717066666666666, 1238938.0
578
+ 9.732683333333334, 1243679.0
579
+ 9.748316666666666, 1253000.0
580
+ 9.76395, 1242141.0
581
+ 9.779566666666666, 1231530.0
582
+ 9.7952, 1201482.0
583
+ 9.810816666666666, 1193362.0
584
+ 9.82645, 1171899.0
585
+ 9.842066666666666, 1173737.0
586
+ 9.8577, 1231696.0
587
+ 9.873316666666666, 1347797.0
588
+ 9.88895, 1434291.0
589
+ 9.904583333333333, 1453707.0
590
+ 9.9202, 1382447.0
591
+ 9.935833333333333, 1277469.0
592
+ 9.95145, 1205125.0
593
+ 9.967083333333333, 1177083.0
594
+ 9.9827, 1147086.0
595
+ 9.998333333333333, 1142023.0
596
+ 10.01395, 1137902.0
597
+ 10.029583333333333, 1150956.0
598
+ 10.045216666666667, 1160440.0
599
+ 10.060833333333333, 1168620.0
600
+ 10.076466666666667, 1175778.0
601
+ 10.092083333333333, 1164629.0
602
+ 10.107716666666667, 1166742.0
603
+ 10.123333333333333, 1161222.0
604
+ 10.138966666666667, 1168422.0
605
+ 10.154583333333333, 1161706.0
606
+ 10.170216666666667, 1161649.0
607
+ 10.18585, 1184723.0
608
+ 10.201466666666667, 1216269.0
609
+ 10.2171, 1221462.0
610
+ 10.232716666666667, 1227623.0
611
+ 10.24835, 1236992.0
612
+ 10.263966666666667, 1233642.0
613
+ 10.2796, 1217614.0
614
+ 10.295216666666667, 1192735.0
615
+ 10.31085, 1195094.0
616
+ 10.326483333333334, 1202836.0
617
+ 10.3421, 1217982.0
618
+ 10.357733333333334, 1221286.0
619
+ 10.37335, 1209344.0
620
+ 10.388983333333334, 1204461.0
621
+ 10.4046, 1214838.0
622
+ 10.420233333333334, 1244749.0
623
+ 10.43585, 1262135.0
624
+ 10.451483333333334, 1259837.0
625
+ 10.467116666666668, 1257168.0
626
+ 10.482733333333334, 1285594.0
627
+ 10.498366666666668, 1309470.0
628
+ 10.513983333333334, 1310691.0
629
+ 10.529616666666668, 1284270.0
630
+ 10.545233333333334, 1267569.0
631
+ 10.560866666666668, 1247449.0
632
+ 10.576483333333334, 1236448.0
633
+ 10.592116666666668, 1260667.0
634
+ 10.60775, 1277927.0
635
+ 10.623366666666668, 1280237.0
636
+ 10.639, 1286564.0
637
+ 10.654616666666668, 1290367.0
638
+ 10.67025, 1309748.0
639
+ 10.685866666666668, 1325709.0
640
+ 10.7015, 1360970.0
641
+ 10.717116666666668, 1363843.0
642
+ 10.73275, 1366064.0
643
+ 10.748383333333333, 1370699.0
644
+ 10.764, 1385755.0
645
+ 10.779633333333333, 1385476.0
646
+ 10.79525, 1373836.0
647
+ 10.810883333333333, 1364274.0
648
+ 10.8265, 1368821.0
649
+ 10.842133333333333, 1389650.0
650
+ 10.85775, 1403245.0
651
+ 10.873383333333333, 1424796.0
652
+ 10.889016666666667, 1444802.0
653
+ 10.904633333333333, 1468361.0
654
+ 10.920266666666667, 1472111.0
655
+ 10.935883333333333, 1463500.0
656
+ 10.951516666666667, 1494173.0
657
+ 10.967133333333333, 1505478.0
658
+ 10.982766666666667, 1520155.0
659
+ 10.998383333333333, 1541873.0
660
+ 11.014016666666667, 1548807.0
661
+ 11.02965, 1515034.0
662
+ 11.045266666666667, 1501358.0
663
+ 11.0609, 1522980.0
664
+ 11.076516666666667, 1550070.0
665
+ 11.09215, 1573497.0
666
+ 11.107766666666667, 1556319.0
667
+ 11.1234, 1524676.0
668
+ 11.139016666666667, 1499015.0
669
+ 11.15465, 1499134.0
670
+ 11.170283333333334, 1526720.0
671
+ 11.1859, 1577171.0
672
+ 11.201533333333334, 1611298.0
673
+ 11.21715, 1651858.0
674
+ 11.232783333333334, 1681184.0
675
+ 11.2484, 1732876.0
676
+ 11.264033333333334, 1803696.0
677
+ 11.27965, 1870332.0
678
+ 11.295283333333334, 1905747.0
679
+ 11.310916666666667, 1926027.0
680
+ 11.326533333333334, 1982247.0
681
+ 11.342166666666667, 2037452.0
682
+ 11.357783333333334, 2078162.0
683
+ 11.373416666666667, 2085632.0
684
+ 11.389033333333334, 2038437.0
685
+ 11.404666666666667, 1972813.0
686
+ 11.420283333333334, 1879752.0
687
+ 11.435916666666667, 1818918.0
688
+ 11.45155, 1791472.0
689
+ 11.467166666666667, 1768301.0
690
+ 11.4828, 1768602.0
691
+ 11.498416666666667, 1766967.0
692
+ 11.51405, 1752097.0
693
+ 11.529666666666667, 1765977.0
694
+ 11.5453, 1766193.0
695
+ 11.560916666666667, 1780252.0
696
+ 11.57655, 1810692.0
697
+ 11.592183333333333, 1850046.0
698
+ 11.6078, 1885924.0
699
+ 11.623433333333333, 1933722.0
700
+ 11.63905, 1973033.0
701
+ 11.654683333333333, 1977603.0
702
+ 11.6703, 1965654.0
703
+ 11.685933333333333, 1926713.0
704
+ 11.70155, 1951330.0
705
+ 11.717183333333333, 1976103.0
706
+ 11.732816666666666, 1975124.0
707
+ 11.748433333333333, 1956283.0
708
+ 11.764066666666666, 1923716.0
709
+ 11.779683333333333, 1911338.0
710
+ 11.795316666666666, 1929242.0
711
+ 11.810933333333333, 1937194.0
712
+ 11.826566666666666, 1919487.0
713
+ 11.842183333333333, 1892839.0
714
+ 11.857816666666666, 1872617.0
715
+ 11.87345, 1882875.0
716
+ 11.889066666666666, 1914559.0
717
+ 11.9047, 1950311.0
718
+ 11.920316666666666, 1987191.0
719
+ 11.93595, 2038995.0
720
+ 11.951566666666666, 2074939.0
721
+ 11.9672, 2096367.0
722
+ 11.982816666666666, 2120021.0
723
+ 11.99845, 2173175.0
724
+ 12.014083333333334, 2226166.0
725
+ 12.0297, 2244661.0
726
+ 12.045333333333334, 2227421.0
727
+ 12.06095, 2223644.0
728
+ 12.076583333333334, 2250745.0
729
+ 12.0922, 2300281.0
730
+ 12.107833333333334, 2329250.0
731
+ 12.12345, 2346992.0
732
+ 12.139083333333334, 2383488.0
733
+ 12.154716666666667, 2417314.0
734
+ 12.170333333333334, 2409977.0
735
+ 12.185966666666667, 2412179.0
736
+ 12.201583333333334, 2432384.0
737
+ 12.217216666666667, 2472384.0
738
+ 12.232833333333334, 2497442.0
739
+ 12.248466666666667, 2474640.0
740
+ 12.264083333333334, 2427884.0
741
+ 12.279716666666667, 2404462.0
742
+ 12.29535, 2393812.0
743
+ 12.310966666666667, 2402884.0
744
+ 12.3266, 2401751.0
745
+ 12.342216666666667, 2386678.0
746
+ 12.35785, 2377709.0
747
+ 12.373466666666667, 2380177.0
748
+ 12.3891, 2391673.0
749
+ 12.404716666666667, 2403636.0
750
+ 12.42035, 2382149.0
751
+ 12.435983333333333, 2349831.0
752
+ 12.4516, 2317662.0
753
+ 12.467233333333333, 2317762.0
754
+ 12.48285, 2330375.0
755
+ 12.498483333333333, 2330512.0
756
+ 12.5141, 2303156.0
757
+ 12.529733333333333, 2250466.0
758
+ 12.54535, 2191825.0
759
+ 12.560983333333333, 2151873.0
760
+ 12.576616666666666, 2100562.0
761
+ 12.592233333333333, 2056855.0
762
+ 12.607866666666666, 2012743.0
763
+ 12.623483333333333, 1971493.0
764
+ 12.639116666666666, 1929799.0
765
+ 12.654733333333333, 1883973.0
766
+ 12.670366666666666, 1870734.0
767
+ 12.685983333333333, 1876529.0
768
+ 12.701616666666666, 1846406.0
769
+ 12.717233333333333, 1777220.0
770
+ 12.732866666666666, 1723393.0
771
+ 12.7485, 1633338.0
772
+ 12.764116666666666, 1562267.0
773
+ 12.77975, 1502988.0
774
+ 12.795366666666666, 1492099.0
775
+ 12.811, 1484227.0
776
+ 12.826616666666666, 1437610.0
777
+ 12.84225, 1363211.0
778
+ 12.857883333333334, 1298260.0
779
+ 12.8735, 1254197.0
780
+ 12.889133333333334, 1217986.0
781
+ 12.90475, 1178466.0
782
+ 12.920383333333334, 1142491.0
783
+ 12.936, 1085249.0
784
+ 12.951633333333334, 1001375.0
785
+ 12.96725, 950803.0
786
+ 12.982883333333334, 919882.0
787
+ 12.9985, 938123.0
788
+ 13.014133333333334, 934907.0
789
+ 13.029766666666667, 923386.0
790
+ 13.045383333333334, 893908.0
791
+ 13.061016666666667, 859505.0
792
+ 13.076633333333334, 814843.0
793
+ 13.092266666666667, 799159.0
794
+ 13.107883333333334, 794641.0
795
+ 13.123516666666667, 778985.0
796
+ 13.139133333333334, 760838.0
797
+ 13.154766666666667, 754085.0
798
+ 13.1704, 759556.0
799
+ 13.186016666666667, 781872.0
800
+ 13.20165, 794021.0
801
+ 13.217266666666667, 807286.0
802
+ 13.2329, 828309.0
803
+ 13.248516666666667, 840539.0
804
+ 13.26415, 831314.0
805
+ 13.279766666666667, 832351.0
806
+ 13.2954, 852680.0
807
+ 13.311033333333333, 864758.0
808
+ 13.32665, 836014.0
809
+ 13.342283333333333, 837703.0
810
+ 13.3579, 835722.0
811
+ 13.373533333333333, 850637.0
812
+ 13.38915, 867731.0
813
+ 13.404783333333333, 871385.0
814
+ 13.4204, 871346.0
815
+ 13.436033333333333, 851516.0
816
+ 13.451666666666666, 827519.0
817
+ 13.467283333333333, 807728.0
818
+ 13.482916666666666, 792582.0
819
+ 13.498533333333333, 807405.0
820
+ 13.514166666666666, 812507.0
821
+ 13.529783333333333, 811330.0
822
+ 13.545416666666666, 800018.0
823
+ 13.561033333333333, 790502.0
824
+ 13.576666666666666, 787586.0
825
+ 13.5923, 778954.0
826
+ 13.607916666666666, 777725.0
827
+ 13.62355, 780595.0
828
+ 13.639166666666666, 766303.0
829
+ 13.6548, 764817.0
830
+ 13.670416666666666, 768867.0
831
+ 13.68605, 790443.0
832
+ 13.701666666666666, 807937.0
833
+ 13.7173, 813460.0
834
+ 13.732933333333333, 789825.0
835
+ 13.74855, 791980.0
836
+ 13.764183333333333, 775905.0
837
+ 13.7798, 745178.0
838
+ 13.795433333333333, 743589.0
839
+ 13.81105, 738545.0
840
+ 13.826683333333333, 739223.0
841
+ 13.8423, 743456.0
842
+ 13.857933333333333, 738729.0
843
+ 13.873566666666667, 737741.0
844
+ 13.889183333333333, 760394.0
845
+ 13.904816666666667, 778994.0
846
+ 13.920433333333333, 784934.0
847
+ 13.936066666666667, 782825.0
848
+ 13.951683333333333, 772886.0
849
+ 13.967316666666667, 760939.0
850
+ 13.982933333333333, 744415.0
851
+ ##END=$$ End of the data block
852
+
853
+ `;
854
+ var _default = exports.default = lcMsTicChemstationJcamp;