diff --git a/src/allotropy/allotrope/schema_mappers/adm/plate_reader/rec/_2024/_06/plate_reader.py b/src/allotropy/allotrope/schema_mappers/adm/plate_reader/rec/_2024/_06/plate_reader.py index 3f8f4a729..45d234b9c 100644 --- a/src/allotropy/allotrope/schema_mappers/adm/plate_reader/rec/_2024/_06/plate_reader.py +++ b/src/allotropy/allotrope/schema_mappers/adm/plate_reader/rec/_2024/_06/plate_reader.py @@ -169,7 +169,6 @@ class MeasurementGroup: analytical_method_identifier: str | None = None experimental_data_identifier: str | None = None experiment_type: str | None = None - maximum_wavelength_signal: float | None = None custom_info: dict[str, Any] | None = None @@ -251,13 +250,9 @@ def _get_technique_document( ], ), ) - custom_info_doc = { - "maximum wavelength signal": quantity_or_none( - TQuantityValueNanometer, measurement_group.maximum_wavelength_signal - ) - } - custom_info_doc.update(measurement_group.custom_info or {}) - return add_custom_information_document(plate_reader_doc, custom_info_doc) + return add_custom_information_document( + plate_reader_doc, measurement_group.custom_info + ) def _get_measurement_document( self, measurement: Measurement @@ -326,21 +321,23 @@ def _get_ultraviolet_absorbance_measurement_document( error_aggregate_document=self._get_error_aggregate_document( measurement.error_document ), - processed_data_aggregate_document=ProcessedDataAggregateDocument( - processed_data_document=[ - ProcessedDataDocumentItem( - processed_data_identifier=measurement.processed_data_document.identifier, - data_processing_document={ - "concentration factor": quantity_or_none( - TQuantityValueNanogramPerMicroliter, - measurement.processed_data_document.concentration_factor, - ) - }, - ) - ] - ) - if measurement.processed_data_document - else None, + processed_data_aggregate_document=( + ProcessedDataAggregateDocument( + processed_data_document=[ + ProcessedDataDocumentItem( + processed_data_identifier=measurement.processed_data_document.identifier, + data_processing_document={ + "concentration factor": quantity_or_none( + TQuantityValueNanogramPerMicroliter, + measurement.processed_data_document.concentration_factor, + ) + }, + ) + ] + ) + if measurement.processed_data_document + else None + ), ) return add_custom_information_document( measurement_doc, measurement.measurement_custom_info diff --git a/src/allotropy/allotrope/schema_mappers/adm/plate_reader/rec/_2025/_03/plate_reader.py b/src/allotropy/allotrope/schema_mappers/adm/plate_reader/rec/_2025/_03/plate_reader.py index 9683d4ae6..ec76427e0 100644 --- a/src/allotropy/allotrope/schema_mappers/adm/plate_reader/rec/_2025/_03/plate_reader.py +++ b/src/allotropy/allotrope/schema_mappers/adm/plate_reader/rec/_2025/_03/plate_reader.py @@ -189,7 +189,6 @@ class MeasurementGroup: measurement_time: str analyst: str | None = None experiment_type: str | None = None - maximum_wavelength_signal: float | None = None custom_info: dict[str, Any] | None = None @@ -269,13 +268,9 @@ def _get_technique_document( ], ), ) - custom_info_doc = { - "maximum wavelength signal": quantity_or_none( - TQuantityValueNanometer, measurement_group.maximum_wavelength_signal - ) - } - custom_info_doc.update(measurement_group.custom_info or {}) - return add_custom_information_document(plate_reader_doc, custom_info_doc) + return add_custom_information_document( + plate_reader_doc, measurement_group.custom_info + ) def _get_measurement_document( self, measurement: Measurement @@ -372,21 +367,23 @@ def _get_ultraviolet_absorbance_measurement_document( error_aggregate_document=self._get_error_aggregate_document( measurement.error_document ), - processed_data_aggregate_document=ProcessedDataAggregateDocument( - processed_data_document=[ - ProcessedDataDocumentItem( - processed_data_identifier=measurement.processed_data_document.identifier, - data_processing_document={ - "concentration factor": quantity_or_none( - TQuantityValueNanogramPerMicroliter, - measurement.processed_data_document.concentration_factor, - ) - }, - ) - ] - ) - if measurement.processed_data_document - else None, + processed_data_aggregate_document=( + ProcessedDataAggregateDocument( + processed_data_document=[ + ProcessedDataDocumentItem( + processed_data_identifier=measurement.processed_data_document.identifier, + data_processing_document={ + "concentration factor": quantity_or_none( + TQuantityValueNanogramPerMicroliter, + measurement.processed_data_document.concentration_factor, + ) + }, + ) + ] + ) + if measurement.processed_data_document + else None + ), ) return add_custom_information_document( measurement_doc, measurement.measurement_custom_info @@ -755,7 +752,9 @@ def _get_spectrum_data_cube_measurement_document( spectrum_data_cube ) - return measurement_doc + return add_custom_information_document( + measurement_doc, measurement.measurement_custom_info + ) def _get_sample_document(self, measurement: Measurement) -> SampleDocument: sample_doc = SampleDocument( diff --git a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py index a2692c4df..b4adb7333 100644 --- a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py +++ b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py @@ -6,6 +6,7 @@ from dateutil import parser +from allotropy.allotrope.models.shared.definitions.custom import TQuantityValueNanometer from allotropy.allotrope.models.shared.definitions.definitions import ( FieldComponentDatatype, ) @@ -39,6 +40,7 @@ Referenceable, ) from allotropy.parsers.utils.uuids import random_uuid_str +from allotropy.parsers.utils.values import quantity_or_none def create_metadata(file_path: str) -> Metadata: @@ -117,13 +119,22 @@ def _get_spectrum_data_cube( def _create_spectrum_measurement( - plate_block: PlateBlock, data_elements: list[DataElement] + plate_block: PlateBlock, data_elements: list[DataElement], position: str ) -> Measurement | None: measurement_type = plate_block.measurement_type first_data_element = data_elements[0] spectrum_data_cube = _get_spectrum_data_cube(plate_block, data_elements) if not spectrum_data_cube: return None + if isinstance(plate_block.block_data.raw_data, SpectrumRawPlateData): + first_data_element.custom_info.update( + { + "maximum wavelength signal": quantity_or_none( + TQuantityValueNanometer, + plate_block.block_data.raw_data.maximum_wavelength_signal[position], + ) + } + ) # Collect error documents and update error_feature to include wavelength with unit error_documents = [] @@ -183,7 +194,7 @@ def _create_measurements(plate_block: PlateBlock, position: str) -> list[Measure MeasurementType.EMISSION_LUMINESCENCE_CUBE_SPECTRUM, MeasurementType.EXCITATION_LUMINESCENCE_CUBE_SPECTRUM, ): - measurement = _create_spectrum_measurement(plate_block, data_elements) + measurement = _create_spectrum_measurement(plate_block, data_elements, position) if not measurement: return [] return [measurement] @@ -263,12 +274,6 @@ def _create_measurement_group( if not (measurements := _create_measurements(plate_block, position)): return None - maximum_wavelength_signal = None - if isinstance(plate_block.block_data.raw_data, SpectrumRawPlateData): - maximum_wavelength_signal = ( - plate_block.block_data.raw_data.maximum_wavelength_signal[position] - ) - measurement_time = DEFAULT_EPOCH_TIMESTAMP if date_last_saved: delta = datetime.timedelta(seconds=plate_block.header.read_time or 0) @@ -278,7 +283,6 @@ def _create_measurement_group( measurements=measurements, plate_well_count=plate_block.header.num_wells, measurement_time=measurement_time, - maximum_wavelength_signal=maximum_wavelength_signal, ) diff --git a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py index b03b19143..c90873bbc 100644 --- a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py +++ b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py @@ -375,7 +375,7 @@ class DataElement: position: str value: float | None error_document: list[ErrorDocument] - custom_info: dict[str, str] = field(default_factory=dict) + custom_info: dict[str, Any] = field(default_factory=dict) elapsed_time: list[float] = field(default_factory=list) kinetic_measures: list[float | None] = field(default_factory=list) sample_id: str | None = None diff --git a/tests/parsers/moldev_softmax_pro/testdata/partial_plate.json b/tests/parsers/moldev_softmax_pro/testdata/partial_plate.json index 34beb356a..d19e5d688 100644 --- a/tests/parsers/moldev_softmax_pro/testdata/partial_plate.json +++ b/tests/parsers/moldev_softmax_pro/testdata/partial_plate.json @@ -50,6 +50,12 @@ [0.0994, 0.1013, 0.101, 0.1016, 0.1025, 0.102, 0.1027, 0.1027, 0.1026, 0.1028, 0.1028, 0.1032, 0.1041, 0.105, 0.1053, 0.1057, 0.1038, 0.1028, 0.1016, 0.1007, 0.1006] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } } } ], @@ -59,12 +65,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } } }, { @@ -115,6 +115,12 @@ [0.0964, 0.0979, 0.0987, 0.0975, 0.0962, 0.0947, 0.0953, 0.0954, 0.0959, 0.0956, 0.0967, 0.0985, 0.0994, 0.1003, 0.1011, 0.1025, 0.1024, 0.1023, 0.1022, 0.1018, 0.1007] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } } } ], @@ -124,12 +130,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } } }, { @@ -180,6 +180,12 @@ [0.0967, 0.0968, 0.0958, 0.0949, 0.0935, 0.0915, 0.0905, 0.0889, 0.0901, 0.091, 0.0919, 0.0935, 0.0936, 0.0938, 0.0941, 0.0953, 0.0962, 0.0974, 0.0977, 0.0978, 0.097] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } } } ], @@ -189,12 +195,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } } }, { @@ -245,6 +245,12 @@ [0.0972, 0.0986, 0.098, 0.0971, 0.0967, 0.0966, 0.0972, 0.0968, 0.0965, 0.0955, 0.0955, 0.096, 0.0964, 0.0969, 0.0971, 0.0971, 0.0972, 0.0979, 0.0982, 0.098, 0.0983] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -254,12 +260,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -310,6 +310,12 @@ [0.095, 0.0953, 0.0962, 0.0951, 0.0942, 0.0949, 0.0976, 0.0993, 0.0995, 0.0993, 0.0994, 0.1, 0.1, 0.1013, 0.1017, 0.1011, 0.1007, 0.1003, 0.1003, 0.1002, 0.1] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } } } ], @@ -319,12 +325,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } } }, { @@ -375,6 +375,12 @@ [0.0947, 0.095, 0.0949, 0.0964, 0.0978, 0.0981, 0.097, 0.0968, 0.098, 0.0985, 0.098, 0.0973, 0.0971, 0.0971, 0.0972, 0.0971, 0.0972, 0.0973, 0.0977, 0.0982, 0.0984] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -384,12 +390,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -440,6 +440,12 @@ [0.0932, 0.0932, 0.0941, 0.094, 0.0943, 0.0942, 0.0951, 0.097, 0.0973, 0.0975, 0.0978, 0.0973, 0.0971, 0.0965, 0.0952, 0.0946, 0.094, 0.094, 0.0944, 0.095, 0.0958] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } } } ], @@ -449,12 +455,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } } }, { @@ -505,6 +505,12 @@ [0.0936, 0.0941, 0.0953, 0.0946, 0.0952, 0.095, 0.0949, 0.0952, 0.0965, 0.097, 0.0972, 0.097, 0.0966, 0.0957, 0.0949, 0.0947, 0.0951, 0.0953, 0.0956, 0.0961, 0.0968] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } } } ], @@ -514,12 +520,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } } }, { @@ -570,6 +570,12 @@ [0.0958, 0.0969, 0.0972, 0.0976, 0.0974, 0.0971, 0.0964, 0.0964, 0.0966, 0.0956, 0.0952, 0.0944, 0.094, 0.0936, 0.0945, 0.0943, 0.0939, 0.0941, 0.0937, 0.093, 0.0923] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -579,12 +585,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -635,6 +635,12 @@ [0.0969, 0.0974, 0.0991, 0.0997, 0.101, 0.1007, 0.0988, 0.097, 0.0969, 0.0973, 0.0977, 0.0984, 0.0995, 0.0997, 0.0996, 0.1002, 0.1004, 0.1005, 0.1008, 0.1006, 0.1004] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -644,12 +650,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -700,6 +700,12 @@ [0.099, 0.0993, 0.0989, 0.0986, 0.0989, 0.1, 0.1005, 0.1003, 0.0999, 0.0993, 0.0982, 0.0985, 0.0984, 0.099, 0.0992, 0.0991, 0.0986, 0.0985, 0.0984, 0.0987, 0.0984] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } } } ], @@ -709,12 +715,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } } }, { @@ -765,6 +765,12 @@ [0.1037, 0.1045, 0.1079, 0.1088, 0.1099, 0.1106, 0.1099, 0.111, 0.1124, 0.1133, 0.1129, 0.1124, 0.1118, 0.1107, 0.1098, 0.1097, 0.1094, 0.1094, 0.1099, 0.11, 0.1101] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -774,12 +780,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -830,6 +830,12 @@ [0.1302, 0.1314, 0.1325, 0.1327, 0.1325, 0.1318, 0.1312, 0.1317, 0.1306, 0.1301, 0.1298, 0.1291, 0.1282, 0.1277, 0.1271, 0.1269, 0.1258, 0.1251, 0.1236, 0.1227, 0.1215] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -839,12 +845,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -895,6 +895,12 @@ [0.1248, 0.1255, 0.1258, 0.1256, 0.1259, 0.1263, 0.125, 0.1248, 0.126, 0.1267, 0.1262, 0.1251, 0.1239, 0.1225, 0.1212, 0.1203, 0.1195, 0.1185, 0.1172, 0.1159, 0.1148] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -904,12 +910,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -960,6 +960,12 @@ [0.1008, 0.1009, 0.1011, 0.1017, 0.1029, 0.1034, 0.1055, 0.107, 0.1077, 0.1069, 0.1063, 0.1061, 0.1051, 0.1045, 0.104, 0.1039, 0.1037, 0.1031, 0.1023, 0.1023, 0.1013] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -969,12 +975,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -1025,6 +1025,12 @@ [0.1006, 0.1008, 0.1005, 0.0998, 0.0991, 0.0996, 0.0998, 0.0991, 0.0992, 0.0995, 0.0998, 0.0998, 0.1002, 0.1002, 0.1009, 0.1005, 0.101, 0.1003, 0.1005, 0.1005, 0.1007] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } } } ], @@ -1034,12 +1040,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } } }, { @@ -1090,6 +1090,12 @@ [0.091, 0.0927, 0.0936, 0.0952, 0.0946, 0.0949, 0.0945, 0.0951, 0.0954, 0.095, 0.0942, 0.0933, 0.093, 0.0936, 0.0944, 0.0956, 0.0951, 0.0949, 0.0947, 0.0939, 0.0933] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } } } ], @@ -1099,12 +1105,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } } }, { @@ -1155,6 +1155,12 @@ [0.0414, 0.0412, 0.0411, 0.041, 0.0409, 0.0408, 0.0408, 0.0406, 0.0406, 0.0403, 0.0403, 0.0402, 0.0401, 0.04, 0.0399, 0.0398, 0.0395, 0.0393, 0.0394, 0.0393, 0.0392] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -1164,12 +1170,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -1220,6 +1220,12 @@ [0.0937, 0.0938, 0.0964, 0.0982, 0.097, 0.0963, 0.0965, 0.0942, 0.0928, 0.0936, 0.0957, 0.0964, 0.0974, 0.0974, 0.0987, 0.0996, 0.0987, 0.0978, 0.0974, 0.098, 0.0981] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } } } ], @@ -1229,12 +1235,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } } }, { @@ -1285,6 +1285,12 @@ [0.0415, 0.0413, 0.0412, 0.0411, 0.0411, 0.0409, 0.0409, 0.0408, 0.0406, 0.0405, 0.0404, 0.0404, 0.0402, 0.0401, 0.04, 0.04, 0.0397, 0.0398, 0.0395, 0.0393, 0.0394] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -1294,12 +1300,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -1350,6 +1350,12 @@ [0.0933, 0.0946, 0.0955, 0.0962, 0.0965, 0.0965, 0.0964, 0.0969, 0.0966, 0.0961, 0.0965, 0.0961, 0.0953, 0.0947, 0.0946, 0.0944, 0.0935, 0.0936, 0.0942, 0.0943, 0.0942] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } } } ], @@ -1359,12 +1365,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } } }, { @@ -1415,6 +1415,12 @@ [0.042, 0.0419, 0.0417, 0.0416, 0.0415, 0.0414, 0.0413, 0.0412, 0.041, 0.0409, 0.0409, 0.0407, 0.0405, 0.0404, 0.0404, 0.0402, 0.0399, 0.0397, 0.0397, 0.0396, 0.0394] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -1424,12 +1430,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -1480,6 +1480,12 @@ [0.0862, 0.0863, 0.0869, 0.0894, 0.0921, 0.0914, 0.0908, 0.0905, 0.0911, 0.091, 0.0913, 0.091, 0.0902, 0.0897, 0.0894, 0.0892, 0.0885, 0.0886, 0.0886, 0.0888, 0.0887] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -1489,12 +1495,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -1545,6 +1545,12 @@ [0.0515, 0.0514, 0.0512, 0.0511, 0.0509, 0.0507, 0.0507, 0.0505, 0.0505, 0.0502, 0.0501, 0.0501, 0.0499, 0.0498, 0.0497, 0.0496, 0.0492, 0.0491, 0.0489, 0.0489, 0.0487] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -1554,12 +1560,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -1610,6 +1610,12 @@ [0.0961, 0.0971, 0.0978, 0.0984, 0.1, 0.1002, 0.1005, 0.0998, 0.0989, 0.0996, 0.0988, 0.0983, 0.0978, 0.0968, 0.0959, 0.0952, 0.0947, 0.0941, 0.0937, 0.0924, 0.0925] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } } } ], @@ -1619,12 +1625,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } } }, { @@ -1675,6 +1675,12 @@ [0.0411, 0.0409, 0.0409, 0.0407, 0.0407, 0.0404, 0.0404, 0.0404, 0.0403, 0.0401, 0.04, 0.0401, 0.0398, 0.0397, 0.0397, 0.0395, 0.0393, 0.0392, 0.0392, 0.0391, 0.0389] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -1684,12 +1690,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -1740,6 +1740,12 @@ [0.0934, 0.0947, 0.0943, 0.094, 0.0942, 0.0946, 0.0943, 0.0943, 0.0943, 0.0954, 0.0964, 0.0972, 0.0976, 0.0966, 0.0959, 0.0948, 0.0925, 0.0913, 0.0904, 0.0904, 0.0899] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } } } ], @@ -1749,12 +1755,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 549.0, - "unit": "nm" - } } }, { @@ -1805,6 +1805,12 @@ [0.0404, 0.0403, 0.0401, 0.04, 0.0399, 0.0397, 0.0397, 0.0395, 0.0395, 0.0393, 0.0392, 0.0391, 0.039, 0.039, 0.0388, 0.0387, 0.0384, 0.0384, 0.0382, 0.0382, 0.0382] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -1814,12 +1820,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -1870,6 +1870,12 @@ [0.1366, 0.138, 0.1385, 0.1383, 0.1391, 0.1388, 0.1385, 0.1386, 0.1384, 0.1376, 0.1367, 0.1356, 0.1347, 0.1345, 0.1338, 0.1333, 0.1311, 0.1298, 0.1273, 0.1254, 0.1241] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -1879,12 +1885,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -1935,6 +1935,12 @@ [0.0446, 0.0445, 0.0443, 0.0443, 0.044, 0.0439, 0.0439, 0.0438, 0.0436, 0.0434, 0.0434, 0.0434, 0.0432, 0.0431, 0.043, 0.0428, 0.0425, 0.0425, 0.0422, 0.0421, 0.0422] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -1944,12 +1950,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -2000,6 +2000,12 @@ [0.1003, 0.1009, 0.1015, 0.1007, 0.1005, 0.1016, 0.1012, 0.1003, 0.1009, 0.1006, 0.1008, 0.1012, 0.1006, 0.101, 0.1015, 0.1008, 0.1018, 0.1025, 0.1028, 0.1031, 0.1036] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } } } ], @@ -2009,12 +2015,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 565.0, - "unit": "nm" - } } }, { @@ -2065,6 +2065,12 @@ [0.0507, 0.0507, 0.0506, 0.0505, 0.0504, 0.05, 0.05, 0.0499, 0.05, 0.0497, 0.0495, 0.0495, 0.0495, 0.0492, 0.0491, 0.0489, 0.0487, 0.0486, 0.0484, 0.0486, 0.0484] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -2074,12 +2080,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -2130,6 +2130,12 @@ [0.1515, 0.1567, 0.1574, 0.157, 0.1543, 0.1571, 0.1601, 0.1608, 0.1597, 0.1601, 0.1602, 0.1587, 0.156, 0.1525, 0.1494, 0.1467, 0.1425, 0.1392, 0.1358, 0.1326, 0.1287] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } } } ], @@ -2139,12 +2145,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } } }, { @@ -2195,6 +2195,12 @@ [0.1587, 0.1588, 0.1589, 0.1601, 0.1595, 0.159, 0.1599, 0.1595, 0.1586, 0.1585, 0.158, 0.1567, 0.1551, 0.1528, 0.1504, 0.1485, 0.1454, 0.1415, 0.138, 0.1345, 0.1309] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -2204,12 +2210,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -2260,6 +2260,12 @@ [0.1021, 0.1027, 0.1033, 0.1049, 0.1069, 0.1082, 0.1084, 0.1079, 0.1072, 0.106, 0.1049, 0.105, 0.1049, 0.105, 0.1061, 0.1071, 0.1073, 0.1077, 0.1076, 0.1076, 0.1073] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } } } ], @@ -2269,12 +2275,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } } }, { @@ -2325,6 +2325,12 @@ [0.1004, 0.1013, 0.1018, 0.1021, 0.102, 0.104, 0.1062, 0.1066, 0.1062, 0.1062, 0.1058, 0.1058, 0.1051, 0.1048, 0.1047, 0.1054, 0.1059, 0.1062, 0.1064, 0.1076, 0.1076] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } } } ], @@ -2334,12 +2340,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } } }, { @@ -2390,6 +2390,12 @@ [0.1044, 0.1055, 0.1064, 0.1084, 0.1092, 0.1092, 0.1095, 0.1089, 0.1079, 0.1077, 0.1077, 0.108, 0.1074, 0.1074, 0.1074, 0.1073, 0.1072, 0.107, 0.1067, 0.1063, 0.1057] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } } } ], @@ -2399,12 +2405,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } } }, { @@ -2455,6 +2455,12 @@ [0.1046, 0.1055, 0.1066, 0.108, 0.1078, 0.1078, 0.1073, 0.108, 0.1086, 0.1078, 0.1072, 0.1069, 0.107, 0.1073, 0.1075, 0.1078, 0.1077, 0.1075, 0.1072, 0.1067, 0.1063] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -2464,12 +2470,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -2520,6 +2520,12 @@ [0.1129, 0.1125, 0.1126, 0.1147, 0.1152, 0.1153, 0.1154, 0.1156, 0.1167, 0.1169, 0.1176, 0.1178, 0.1175, 0.1174, 0.1154, 0.1166, 0.1183, 0.1186, 0.1176, 0.1171, 0.1168] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } } } ], @@ -2529,12 +2535,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 559.0, - "unit": "nm" - } } }, { @@ -2585,6 +2585,12 @@ [0.1067, 0.1065, 0.1062, 0.1077, 0.1089, 0.1093, 0.1092, 0.1101, 0.1106, 0.1107, 0.1112, 0.1103, 0.11, 0.1104, 0.1107, 0.1111, 0.1104, 0.1096, 0.1095, 0.1094, 0.1095] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } } } ], @@ -2594,12 +2600,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } } }, { @@ -2650,6 +2650,12 @@ [0.1627, 0.1642, 0.1655, 0.1659, 0.167, 0.1679, 0.1675, 0.1665, 0.165, 0.1636, 0.1618, 0.1587, 0.1551, 0.1514, 0.147, 0.1431, 0.1393, 0.136, 0.1322, 0.1296, 0.1262] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -2659,12 +2665,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -2715,6 +2715,12 @@ [0.1738, 0.1754, 0.1758, 0.1766, 0.1771, 0.1775, 0.1773, 0.1766, 0.1754, 0.174, 0.1717, 0.1686, 0.1648, 0.1602, 0.1553, 0.1505, 0.1465, 0.143, 0.1396, 0.1367, 0.1335] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -2724,12 +2730,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -2780,6 +2780,12 @@ [0.1078, 0.1083, 0.1086, 0.1082, 0.109, 0.111, 0.1123, 0.1134, 0.114, 0.1126, 0.1135, 0.1133, 0.114, 0.1153, 0.1174, 0.1186, 0.1187, 0.117, 0.1154, 0.1135, 0.1121] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } } } ], @@ -2789,12 +2795,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } } }, { @@ -2845,6 +2845,12 @@ [0.1154, 0.1155, 0.1155, 0.1144, 0.1163, 0.1184, 0.1195, 0.1204, 0.1218, 0.1215, 0.121, 0.1209, 0.1204, 0.1197, 0.119, 0.1187, 0.1187, 0.1178, 0.1178, 0.1165, 0.1159] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -2854,12 +2860,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -2910,6 +2910,12 @@ [0.1091, 0.1111, 0.1115, 0.11, 0.11, 0.11, 0.1097, 0.1081, 0.1098, 0.1104, 0.1108, 0.1109, 0.1108, 0.1108, 0.1111, 0.1119, 0.1102, 0.1102, 0.1093, 0.1085, 0.1081] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } } } ], @@ -2919,12 +2925,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } } }, { @@ -2975,6 +2975,12 @@ [0.1017, 0.1027, 0.1022, 0.1031, 0.1039, 0.1041, 0.1052, 0.1065, 0.1066, 0.1073, 0.106, 0.1053, 0.105, 0.1039, 0.1039, 0.1044, 0.1045, 0.1045, 0.1037, 0.1037, 0.103] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -2984,12 +2990,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -3040,6 +3040,12 @@ [0.1039, 0.1044, 0.1049, 0.1052, 0.1053, 0.1054, 0.1056, 0.1055, 0.1052, 0.1049, 0.1042, 0.1031, 0.1016, 0.1, 0.0986, 0.0968, 0.0953, 0.0932, 0.0912, 0.089, 0.0868] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } } } ], @@ -3049,12 +3055,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } } }, { @@ -3105,6 +3105,12 @@ [0.1412, 0.1422, 0.1432, 0.1444, 0.1449, 0.1453, 0.1449, 0.1431, 0.1405, 0.1386, 0.1362, 0.1333, 0.1312, 0.1286, 0.1263, 0.1239, 0.1218, 0.1198, 0.1178, 0.1157, 0.1131] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -3114,12 +3120,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -3170,6 +3170,12 @@ [0.1667, 0.164, 0.1621, 0.1609, 0.1615, 0.1641, 0.1658, 0.1662, 0.1664, 0.166, 0.1655, 0.1644, 0.1623, 0.1584, 0.1538, 0.1494, 0.1439, 0.1397, 0.1357, 0.1319, 0.1283] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -3179,12 +3185,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -3235,6 +3235,12 @@ [0.0442, 0.0439, 0.0437, 0.0439, 0.0438, 0.0437, 0.0437, 0.0437, 0.0437, 0.0432, 0.0434, 0.0434, 0.0432, 0.0433, 0.0432, 0.0433, 0.0433, 0.0433, 0.0432, 0.0432, 0.0431] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -3244,12 +3250,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -3300,6 +3300,12 @@ [0.1025, 0.1036, 0.1036, 0.1029, 0.1038, 0.1051, 0.107, 0.1084, 0.1092, 0.109, 0.1083, 0.1084, 0.1072, 0.1065, 0.1061, 0.1065, 0.1064, 0.107, 0.1078, 0.108, 0.108] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -3309,12 +3315,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -3365,6 +3365,12 @@ [0.0446, 0.0444, 0.0442, 0.0444, 0.0443, 0.0442, 0.0442, 0.0442, 0.0441, 0.0438, 0.0438, 0.0438, 0.0437, 0.0438, 0.0437, 0.0439, 0.0438, 0.0437, 0.0437, 0.0436, 0.0436] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -3374,12 +3380,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -3430,6 +3430,12 @@ [0.1067, 0.1077, 0.1084, 0.1088, 0.1097, 0.11, 0.1104, 0.1109, 0.1109, 0.1104, 0.1095, 0.1091, 0.1084, 0.1076, 0.1067, 0.1062, 0.1057, 0.1056, 0.1061, 0.1057, 0.1052] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } } } ], @@ -3439,12 +3445,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } } }, { @@ -3495,6 +3495,12 @@ [0.0455, 0.0453, 0.045, 0.0452, 0.0451, 0.0449, 0.0449, 0.0448, 0.0447, 0.0445, 0.0444, 0.0443, 0.0442, 0.0442, 0.0441, 0.0441, 0.0441, 0.0439, 0.0439, 0.0437, 0.0435] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -3504,12 +3510,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -3560,6 +3560,12 @@ [0.1113, 0.1123, 0.112, 0.1135, 0.1155, 0.1163, 0.1171, 0.1173, 0.1178, 0.1176, 0.1168, 0.1156, 0.1146, 0.114, 0.1136, 0.1133, 0.1133, 0.1139, 0.1144, 0.1147, 0.1148] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -3569,12 +3575,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -3625,6 +3625,12 @@ [0.0463, 0.046, 0.0459, 0.046, 0.0459, 0.0456, 0.0456, 0.0456, 0.0454, 0.0452, 0.0452, 0.045, 0.0449, 0.0448, 0.0448, 0.045, 0.0449, 0.0446, 0.0447, 0.0441, 0.0442] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -3634,12 +3640,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -3690,6 +3690,12 @@ [0.1742, 0.1773, 0.1794, 0.1795, 0.179, 0.1772, 0.1763, 0.1758, 0.1732, 0.1727, 0.1706, 0.169, 0.1681, 0.1644, 0.1634, 0.1583, 0.1557, 0.151, 0.1481, 0.1428, 0.1404] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -3699,12 +3705,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -3755,6 +3755,12 @@ [0.045, 0.0447, 0.0445, 0.0447, 0.0446, 0.0444, 0.0445, 0.0444, 0.0443, 0.044, 0.044, 0.0439, 0.0438, 0.0438, 0.0437, 0.0437, 0.0437, 0.0436, 0.0436, 0.0434, 0.0434] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -3764,12 +3770,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -3820,6 +3820,12 @@ [0.0991, 0.0993, 0.1009, 0.102, 0.1028, 0.1034, 0.1046, 0.1072, 0.1083, 0.1091, 0.1105, 0.1121, 0.1128, 0.1134, 0.1141, 0.1148, 0.1158, 0.1156, 0.1147, 0.1138, 0.1124] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } } } ], @@ -3829,12 +3835,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } } }, { @@ -3885,6 +3885,12 @@ [0.0448, 0.0447, 0.0445, 0.0446, 0.0446, 0.0444, 0.0444, 0.0443, 0.0443, 0.0441, 0.044, 0.044, 0.0439, 0.0439, 0.0439, 0.0438, 0.0437, 0.0436, 0.0436, 0.0437, 0.0436] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -3894,12 +3900,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -3950,6 +3950,12 @@ [0.1058, 0.1055, 0.1066, 0.1071, 0.1063, 0.1063, 0.1063, 0.1073, 0.1078, 0.109, 0.1096, 0.11, 0.1104, 0.1105, 0.1109, 0.1125, 0.1113, 0.1103, 0.1092, 0.1077, 0.106] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } } } ], @@ -3959,12 +3965,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } } }, { @@ -4015,6 +4015,12 @@ [0.0431, 0.0429, 0.0428, 0.0429, 0.0429, 0.0427, 0.0427, 0.0427, 0.0426, 0.0424, 0.0423, 0.0423, 0.0423, 0.0422, 0.0422, 0.0424, 0.0422, 0.0421, 0.0421, 0.0421, 0.042] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -4024,12 +4030,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -4080,6 +4080,12 @@ [0.104, 0.1048, 0.105, 0.1055, 0.105, 0.1047, 0.1039, 0.1028, 0.1015, 0.1006, 0.0998, 0.099, 0.0981, 0.0969, 0.0955, 0.0938, 0.092, 0.09, 0.0878, 0.086, 0.0839] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -4089,12 +4095,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -4145,6 +4145,12 @@ [0.0571, 0.0571, 0.0569, 0.057, 0.057, 0.0567, 0.0568, 0.0567, 0.0567, 0.0564, 0.0562, 0.0562, 0.0563, 0.0561, 0.0561, 0.056, 0.056, 0.0559, 0.0559, 0.0558, 0.0558] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -4154,12 +4160,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -4210,6 +4210,12 @@ [0.1718, 0.174, 0.1773, 0.179, 0.1799, 0.1791, 0.1781, 0.1771, 0.1761, 0.1766, 0.1758, 0.1741, 0.1715, 0.1679, 0.1644, 0.1618, 0.1578, 0.1546, 0.1512, 0.148, 0.1442] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -4219,12 +4225,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -4275,6 +4275,12 @@ [0.165, 0.1659, 0.1662, 0.1664, 0.1669, 0.1664, 0.1654, 0.1634, 0.1614, 0.161, 0.1601, 0.1588, 0.157, 0.1543, 0.1518, 0.1494, 0.1469, 0.1435, 0.1401, 0.1373, 0.1342] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -4284,12 +4290,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -4340,6 +4340,12 @@ [0.0989, 0.0999, 0.1009, 0.1015, 0.1031, 0.1036, 0.1045, 0.1034, 0.1034, 0.1044, 0.1048, 0.1057, 0.1052, 0.1041, 0.1033, 0.1036, 0.104, 0.1044, 0.1051, 0.1047, 0.1039] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } } } ], @@ -4349,12 +4355,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } } }, { @@ -4405,6 +4405,12 @@ [0.1023, 0.1029, 0.1024, 0.1024, 0.1017, 0.1016, 0.103, 0.1042, 0.1052, 0.1062, 0.1062, 0.1063, 0.1061, 0.1064, 0.1062, 0.1062, 0.105, 0.1043, 0.1042, 0.104, 0.1036] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } } } ], @@ -4414,12 +4420,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 551.0, - "unit": "nm" - } } }, { @@ -4470,6 +4470,12 @@ [0.1035, 0.1046, 0.1051, 0.1054, 0.1066, 0.1073, 0.1072, 0.1057, 0.1057, 0.1064, 0.1073, 0.1086, 0.1094, 0.1095, 0.1084, 0.1072, 0.1059, 0.1054, 0.1053, 0.1052, 0.1061] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } } } ], @@ -4479,12 +4485,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 551.0, - "unit": "nm" - } } }, { @@ -4535,6 +4535,12 @@ [0.1027, 0.1032, 0.1026, 0.1034, 0.1048, 0.1053, 0.1063, 0.1063, 0.1069, 0.1083, 0.1091, 0.1092, 0.1085, 0.1077, 0.1068, 0.1063, 0.1054, 0.1054, 0.1052, 0.1054, 0.1059] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } } } ], @@ -4544,12 +4550,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } } }, { @@ -4600,6 +4600,12 @@ [0.099, 0.0996, 0.1005, 0.1008, 0.1002, 0.101, 0.1014, 0.1033, 0.1039, 0.1043, 0.1049, 0.1055, 0.1063, 0.1063, 0.1061, 0.1061, 0.1055, 0.105, 0.1041, 0.1036, 0.1037] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } } } ], @@ -4609,12 +4615,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 549.0, - "unit": "nm" - } } }, { @@ -4665,6 +4665,12 @@ [0.1118, 0.1118, 0.1112, 0.1126, 0.1145, 0.1145, 0.1142, 0.1159, 0.1177, 0.1185, 0.1185, 0.1184, 0.1185, 0.118, 0.1178, 0.1174, 0.117, 0.1169, 0.1168, 0.1172, 0.117] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -4674,12 +4680,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -4730,6 +4730,12 @@ [0.1108, 0.1119, 0.1124, 0.1119, 0.1124, 0.1113, 0.1118, 0.1127, 0.1138, 0.1152, 0.1159, 0.1158, 0.1154, 0.1155, 0.1163, 0.1159, 0.1172, 0.1172, 0.1179, 0.1173, 0.1169] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } } } ], @@ -4739,12 +4745,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 561.0, - "unit": "nm" - } } }, { @@ -4795,6 +4795,12 @@ [0.1056, 0.1066, 0.1061, 0.1054, 0.1068, 0.1073, 0.1086, 0.1085, 0.1102, 0.1113, 0.1125, 0.1123, 0.112, 0.112, 0.1115, 0.1107, 0.11, 0.1086, 0.1075, 0.1063, 0.1053] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } } } ], @@ -4804,12 +4810,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } } }, { @@ -4860,6 +4860,12 @@ [0.1026, 0.1042, 0.1049, 0.1051, 0.1052, 0.1058, 0.1053, 0.1043, 0.1049, 0.1067, 0.1079, 0.1085, 0.1083, 0.1078, 0.1071, 0.1076, 0.1081, 0.1087, 0.1088, 0.1093, 0.1083] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } } } ], @@ -4869,12 +4875,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } } }, { @@ -4925,6 +4925,12 @@ [0.1056, 0.1065, 0.1083, 0.1108, 0.1109, 0.1106, 0.1111, 0.1125, 0.113, 0.1136, 0.1138, 0.1139, 0.1134, 0.1117, 0.1108, 0.1098, 0.109, 0.1094, 0.1093, 0.1089, 0.1084] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } } } ], @@ -4934,12 +4940,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } } }, { @@ -4990,6 +4990,12 @@ [0.1544, 0.1559, 0.1566, 0.1579, 0.1574, 0.1596, 0.1598, 0.1587, 0.157, 0.1563, 0.1549, 0.1531, 0.1522, 0.151, 0.1501, 0.1491, 0.1466, 0.1437, 0.1407, 0.1375, 0.1345] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } } } ], @@ -4999,12 +5005,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } } }, { @@ -5055,6 +5055,12 @@ [0.1571, 0.1568, 0.1565, 0.1586, 0.1612, 0.1617, 0.1612, 0.16, 0.1583, 0.1573, 0.1556, 0.1536, 0.1514, 0.149, 0.1465, 0.1438, 0.141, 0.1387, 0.1359, 0.1332, 0.1304] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -5064,12 +5070,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -5120,6 +5120,12 @@ [0.0481, 0.0479, 0.0477, 0.0477, 0.0478, 0.0476, 0.0476, 0.0474, 0.0474, 0.0477, 0.0476, 0.0477, 0.0476, 0.0477, 0.0477, 0.0478, 0.0474, 0.0475, 0.0474, 0.0472, 0.0471] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -5129,12 +5135,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -5185,6 +5185,12 @@ [0.0503, 0.0503, 0.0501, 0.0503, 0.0504, 0.05, 0.0499, 0.0499, 0.05, 0.0503, 0.05, 0.0502, 0.0502, 0.05, 0.05, 0.0499, 0.0497, 0.0499, 0.0497, 0.0497, 0.0496] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -5194,12 +5200,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -5250,6 +5250,12 @@ [0.1605, 0.1602, 0.1594, 0.1621, 0.162, 0.1635, 0.1649, 0.1652, 0.1645, 0.1638, 0.1626, 0.1607, 0.1588, 0.1563, 0.1532, 0.1499, 0.145, 0.1412, 0.1378, 0.135, 0.1327] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } } } ], @@ -5259,12 +5265,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } } }, { @@ -5315,6 +5315,12 @@ [0.0484, 0.048, 0.0478, 0.0478, 0.0479, 0.0477, 0.0476, 0.0475, 0.0475, 0.0476, 0.0476, 0.0476, 0.0475, 0.0476, 0.0474, 0.0474, 0.0472, 0.0472, 0.0471, 0.0469, 0.0469] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -5324,12 +5330,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -5380,6 +5380,12 @@ [0.0976, 0.0988, 0.0991, 0.099, 0.0997, 0.1009, 0.1009, 0.1011, 0.1011, 0.1019, 0.1018, 0.1025, 0.1029, 0.1032, 0.1027, 0.1023, 0.1017, 0.101, 0.1008, 0.1011, 0.102] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } } } ], @@ -5389,12 +5395,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 551.0, - "unit": "nm" - } } }, { @@ -5445,6 +5445,12 @@ [0.0482, 0.048, 0.0477, 0.0479, 0.0479, 0.0478, 0.0477, 0.0477, 0.0476, 0.0479, 0.0479, 0.0478, 0.0478, 0.0478, 0.0479, 0.0479, 0.0477, 0.0476, 0.0476, 0.0476, 0.0475] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -5454,12 +5460,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -5510,6 +5510,12 @@ [0.1003, 0.101, 0.1008, 0.1016, 0.103, 0.1031, 0.1037, 0.1042, 0.1047, 0.1052, 0.1055, 0.105, 0.1044, 0.1047, 0.1046, 0.104, 0.1038, 0.1045, 0.1047, 0.105, 0.105] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } } } ], @@ -5519,12 +5525,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } } }, { @@ -5575,6 +5575,12 @@ [0.0493, 0.049, 0.0488, 0.0489, 0.0488, 0.0487, 0.0486, 0.0484, 0.0483, 0.0486, 0.0486, 0.0484, 0.0483, 0.0484, 0.0482, 0.0483, 0.048, 0.048, 0.0479, 0.0476, 0.0474] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -5584,12 +5590,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -5640,6 +5640,12 @@ [0.1046, 0.1061, 0.1085, 0.1097, 0.1097, 0.109, 0.1093, 0.1104, 0.1118, 0.1129, 0.1131, 0.1125, 0.1122, 0.1119, 0.1111, 0.1107, 0.1108, 0.1104, 0.1107, 0.11, 0.1089] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } } } ], @@ -5649,12 +5655,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } } }, { @@ -5705,6 +5705,12 @@ [0.0617, 0.0615, 0.0613, 0.0612, 0.0613, 0.0611, 0.061, 0.0609, 0.0609, 0.0611, 0.0609, 0.0611, 0.0609, 0.0609, 0.0608, 0.0607, 0.0605, 0.0606, 0.0603, 0.0604, 0.0602] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -5714,12 +5720,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -5770,6 +5770,12 @@ [0.1094, 0.1106, 0.1115, 0.1107, 0.1107, 0.1102, 0.1115, 0.1103, 0.1088, 0.1102, 0.1107, 0.1123, 0.1134, 0.1121, 0.1122, 0.111, 0.1118, 0.1111, 0.1112, 0.1092, 0.1082] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } } } ], @@ -5779,12 +5785,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 549.0, - "unit": "nm" - } } }, { @@ -5835,6 +5835,12 @@ [0.0494, 0.0492, 0.0491, 0.0492, 0.0493, 0.0491, 0.0491, 0.049, 0.0488, 0.0492, 0.0492, 0.0493, 0.0492, 0.0492, 0.0492, 0.0491, 0.0491, 0.049, 0.0489, 0.0488, 0.0487] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -5844,12 +5850,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -5900,6 +5900,12 @@ [0.1009, 0.1013, 0.1015, 0.1021, 0.1027, 0.1035, 0.104, 0.1035, 0.1038, 0.1051, 0.1054, 0.1056, 0.106, 0.1068, 0.1073, 0.1073, 0.108, 0.1076, 0.1077, 0.1066, 0.1051] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } } } ], @@ -5909,12 +5915,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } } }, { @@ -5965,6 +5965,12 @@ [0.0497, 0.0495, 0.0493, 0.0494, 0.0494, 0.0493, 0.0492, 0.0491, 0.049, 0.0493, 0.0493, 0.0493, 0.0492, 0.0492, 0.0491, 0.049, 0.049, 0.0488, 0.0487, 0.0487, 0.0485] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -5974,12 +5980,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -6030,6 +6030,12 @@ [0.1606, 0.162, 0.1616, 0.162, 0.1633, 0.1642, 0.1632, 0.1618, 0.1591, 0.1579, 0.1561, 0.1535, 0.1517, 0.1495, 0.1479, 0.1463, 0.144, 0.1414, 0.1392, 0.1362, 0.1333] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -6039,12 +6045,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -6095,6 +6095,12 @@ [0.0483, 0.0481, 0.0479, 0.0479, 0.0481, 0.0479, 0.0479, 0.0478, 0.0478, 0.048, 0.048, 0.048, 0.048, 0.0481, 0.0479, 0.0479, 0.0478, 0.0477, 0.0476, 0.0475, 0.0474] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -6104,12 +6110,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -6160,6 +6160,12 @@ [0.0489, 0.0486, 0.0484, 0.0486, 0.0486, 0.0484, 0.0484, 0.0483, 0.0482, 0.0484, 0.0484, 0.0485, 0.0483, 0.0484, 0.0483, 0.0483, 0.0481, 0.048, 0.048, 0.0478, 0.0477] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -6169,12 +6175,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -6225,6 +6225,12 @@ [0.0487, 0.0486, 0.0483, 0.0485, 0.0484, 0.0483, 0.0482, 0.0481, 0.048, 0.0484, 0.0483, 0.0483, 0.0481, 0.0482, 0.048, 0.0479, 0.0479, 0.0478, 0.0477, 0.0474, 0.0474] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -6234,12 +6240,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -6290,6 +6290,12 @@ [0.169, 0.1721, 0.1699, 0.1705, 0.1718, 0.1694, 0.1659, 0.1648, 0.1646, 0.1644, 0.1637, 0.1619, 0.1601, 0.1573, 0.1544, 0.1516, 0.1477, 0.1449, 0.142, 0.1391, 0.1358] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -6299,12 +6305,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -6355,6 +6355,12 @@ [0.1698, 0.169, 0.1704, 0.175, 0.1752, 0.1731, 0.1697, 0.1673, 0.1667, 0.1683, 0.1684, 0.1673, 0.1661, 0.1637, 0.161, 0.1584, 0.1549, 0.1507, 0.1468, 0.1429, 0.1385] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -6364,12 +6370,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -6420,6 +6420,12 @@ [0.1292, 0.1297, 0.1304, 0.1321, 0.1315, 0.1324, 0.1329, 0.1325, 0.132, 0.1324, 0.1327, 0.132, 0.1311, 0.1297, 0.1285, 0.1277, 0.1262, 0.1253, 0.1241, 0.123, 0.1218] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } } } ], @@ -6429,12 +6435,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } } }, { @@ -6485,6 +6485,12 @@ [0.1309, 0.131, 0.1326, 0.1346, 0.134, 0.1326, 0.1314, 0.1312, 0.1317, 0.1327, 0.1336, 0.1336, 0.1337, 0.1325, 0.1318, 0.1309, 0.13, 0.129, 0.1276, 0.1267, 0.1254] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -6494,12 +6500,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -6550,6 +6550,12 @@ [0.1041, 0.1045, 0.1043, 0.1046, 0.1044, 0.1049, 0.1064, 0.1079, 0.1091, 0.1098, 0.1098, 0.1085, 0.1076, 0.1069, 0.1061, 0.106, 0.1061, 0.1059, 0.1063, 0.1063, 0.1067] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -6559,12 +6565,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -6615,6 +6615,12 @@ [0.1033, 0.1036, 0.105, 0.1075, 0.1073, 0.1067, 0.1054, 0.1059, 0.1067, 0.1075, 0.1079, 0.1079, 0.1078, 0.1077, 0.1071, 0.1083, 0.109, 0.1094, 0.1094, 0.1091, 0.1089] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } } } ], @@ -6624,12 +6630,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 559.0, - "unit": "nm" - } } }, { @@ -6680,6 +6680,12 @@ [0.1696, 0.1706, 0.1707, 0.171, 0.1712, 0.1713, 0.1711, 0.1712, 0.1706, 0.1695, 0.1678, 0.1655, 0.163, 0.1595, 0.1559, 0.1521, 0.1483, 0.1446, 0.141, 0.1381, 0.1351] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -6689,12 +6695,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -6745,6 +6745,12 @@ [0.1797, 0.1807, 0.1813, 0.1823, 0.1829, 0.1828, 0.183, 0.1828, 0.1824, 0.1818, 0.18, 0.1772, 0.174, 0.1699, 0.1656, 0.1612, 0.1575, 0.1545, 0.151, 0.1482, 0.1449] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } } } ], @@ -6754,12 +6760,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } } }, { @@ -6810,6 +6810,12 @@ [0.0906, 0.0913, 0.0913, 0.0922, 0.0927, 0.0935, 0.0932, 0.0926, 0.092, 0.0921, 0.0927, 0.0939, 0.0947, 0.0955, 0.0966, 0.0972, 0.0978, 0.0974, 0.0975, 0.0973, 0.0983] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } } } ], @@ -6819,12 +6825,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 565.0, - "unit": "nm" - } } }, { @@ -6875,6 +6875,12 @@ [0.1039, 0.1052, 0.1053, 0.1046, 0.1039, 0.1048, 0.1056, 0.1055, 0.1059, 0.1061, 0.1058, 0.1054, 0.1052, 0.1045, 0.1032, 0.1019, 0.1021, 0.1023, 0.1027, 0.1033, 0.1038] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -6884,12 +6890,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -6940,6 +6940,12 @@ [0.1067, 0.1077, 0.1082, 0.1091, 0.1095, 0.1088, 0.109, 0.1085, 0.1091, 0.111, 0.1128, 0.1128, 0.1123, 0.1122, 0.1125, 0.1126, 0.1125, 0.1117, 0.1109, 0.1103, 0.1093] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } } } ], @@ -6949,12 +6955,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } } }, { @@ -7005,6 +7005,12 @@ [0.1063, 0.1079, 0.1086, 0.1091, 0.1097, 0.1097, 0.1107, 0.1116, 0.1115, 0.1119, 0.1119, 0.1117, 0.1112, 0.1113, 0.1107, 0.1103, 0.1097, 0.1088, 0.1078, 0.107, 0.1059] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -7014,12 +7020,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -7070,6 +7070,12 @@ [0.1974, 0.197, 0.1976, 0.1995, 0.2004, 0.1999, 0.1975, 0.1949, 0.1921, 0.1906, 0.189, 0.1862, 0.1835, 0.1798, 0.1768, 0.1739, 0.1699, 0.1665, 0.1627, 0.1591, 0.1552] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -7079,12 +7085,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -7135,6 +7135,12 @@ [0.1907, 0.1924, 0.1952, 0.1956, 0.1953, 0.1937, 0.1916, 0.1899, 0.1886, 0.1877, 0.1862, 0.1839, 0.1813, 0.1777, 0.174, 0.1698, 0.1657, 0.1617, 0.1574, 0.1535, 0.1491] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -7144,12 +7150,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -7200,6 +7200,12 @@ [0.0473, 0.0471, 0.0469, 0.0469, 0.0468, 0.0467, 0.0466, 0.0466, 0.0464, 0.0463, 0.0463, 0.0462, 0.0462, 0.0462, 0.0461, 0.0459, 0.0459, 0.0457, 0.0456, 0.0456, 0.0455] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -7209,12 +7215,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -7265,6 +7265,12 @@ [0.0484, 0.0482, 0.048, 0.048, 0.0479, 0.0477, 0.0476, 0.0475, 0.0473, 0.0471, 0.0471, 0.047, 0.0469, 0.0469, 0.0467, 0.0465, 0.0464, 0.0463, 0.0461, 0.046, 0.0459] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -7274,12 +7280,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -7330,6 +7330,12 @@ [0.1822, 0.1802, 0.1789, 0.1769, 0.1754, 0.1777, 0.1792, 0.1801, 0.1793, 0.1791, 0.1789, 0.177, 0.1734, 0.1689, 0.1641, 0.1591, 0.1538, 0.1497, 0.1457, 0.1417, 0.138] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -7339,12 +7345,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -7395,6 +7395,12 @@ [0.0483, 0.048, 0.0477, 0.0476, 0.0474, 0.0473, 0.0471, 0.047, 0.0468, 0.0465, 0.0465, 0.0463, 0.0462, 0.0461, 0.0458, 0.0457, 0.0455, 0.0454, 0.0452, 0.045, 0.0449] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -7404,12 +7410,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -7460,6 +7460,12 @@ [0.1338, 0.1331, 0.1334, 0.1347, 0.1357, 0.1362, 0.1372, 0.1377, 0.1372, 0.137, 0.1371, 0.137, 0.1371, 0.1362, 0.1351, 0.1333, 0.1322, 0.1305, 0.1288, 0.1269, 0.1257] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } } } ], @@ -7469,12 +7475,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } } }, { @@ -7525,6 +7525,12 @@ [0.0472, 0.047, 0.0467, 0.0467, 0.0466, 0.0465, 0.0464, 0.0464, 0.0461, 0.046, 0.0459, 0.0459, 0.0458, 0.0458, 0.0456, 0.0455, 0.0454, 0.0454, 0.0453, 0.0452, 0.0451] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -7534,12 +7540,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -7590,6 +7590,12 @@ [0.1051, 0.1066, 0.1072, 0.1076, 0.1084, 0.1087, 0.1088, 0.1095, 0.1097, 0.1104, 0.1103, 0.1102, 0.1104, 0.1099, 0.1084, 0.107, 0.1058, 0.1053, 0.1048, 0.1053, 0.1054] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -7599,12 +7605,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -7655,6 +7655,12 @@ [0.0574, 0.0571, 0.0569, 0.0566, 0.0565, 0.0564, 0.0564, 0.0564, 0.0559, 0.0559, 0.0558, 0.0556, 0.0557, 0.0555, 0.0556, 0.0553, 0.0552, 0.0551, 0.055, 0.0548, 0.0546] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -7664,12 +7670,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -7720,6 +7720,12 @@ [0.1754, 0.177, 0.1771, 0.1779, 0.179, 0.1793, 0.1804, 0.1809, 0.1802, 0.179, 0.1765, 0.173, 0.1691, 0.1645, 0.1603, 0.1563, 0.1531, 0.1496, 0.1461, 0.1428, 0.1398] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } } } ], @@ -7729,12 +7735,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } } }, { @@ -7785,6 +7785,12 @@ [0.0592, 0.0592, 0.0588, 0.0589, 0.0587, 0.0586, 0.0585, 0.0584, 0.0583, 0.0581, 0.0579, 0.058, 0.058, 0.0581, 0.0577, 0.0574, 0.0572, 0.0575, 0.0569, 0.0574, 0.057] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -7794,12 +7800,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -7850,6 +7850,12 @@ [0.1003, 0.1016, 0.1024, 0.1039, 0.1057, 0.1067, 0.1068, 0.1061, 0.1057, 0.106, 0.1072, 0.1079, 0.1075, 0.1072, 0.1062, 0.106, 0.1052, 0.1039, 0.1033, 0.1036, 0.1024] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } } } ], @@ -7859,12 +7865,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } } }, { @@ -7915,6 +7915,12 @@ [0.0489, 0.0487, 0.0483, 0.0483, 0.0481, 0.048, 0.0479, 0.0478, 0.0474, 0.0473, 0.0473, 0.0471, 0.0471, 0.047, 0.0467, 0.0464, 0.0464, 0.0461, 0.046, 0.0458, 0.0458] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -7924,12 +7930,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -7980,6 +7980,12 @@ [0.1061, 0.1071, 0.1081, 0.1096, 0.1107, 0.1106, 0.1104, 0.1118, 0.1128, 0.1129, 0.1142, 0.1148, 0.114, 0.1129, 0.112, 0.1107, 0.1098, 0.1093, 0.1088, 0.1086, 0.1084] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } } } ], @@ -7989,12 +7995,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } } }, { @@ -8045,6 +8045,12 @@ [0.0486, 0.0483, 0.0481, 0.048, 0.0478, 0.0477, 0.0476, 0.0475, 0.0472, 0.0471, 0.047, 0.0469, 0.0469, 0.0468, 0.0466, 0.0465, 0.0463, 0.0461, 0.0459, 0.0459, 0.0458] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -8054,12 +8060,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -8110,6 +8110,12 @@ [0.2005, 0.1992, 0.1974, 0.196, 0.1944, 0.1935, 0.1917, 0.1909, 0.1884, 0.1869, 0.1848, 0.1812, 0.1782, 0.1743, 0.1711, 0.168, 0.1647, 0.1612, 0.1578, 0.1539, 0.1502] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -8119,12 +8125,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -8175,6 +8175,12 @@ [0.0481, 0.0478, 0.0476, 0.0476, 0.0475, 0.0475, 0.0473, 0.0473, 0.0471, 0.0469, 0.047, 0.0469, 0.0469, 0.0468, 0.0467, 0.0465, 0.0465, 0.0463, 0.0462, 0.0462, 0.0461] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -8184,12 +8190,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -8240,6 +8240,12 @@ [0.0491, 0.0488, 0.0486, 0.0486, 0.0485, 0.0484, 0.0483, 0.0483, 0.048, 0.0479, 0.0479, 0.0478, 0.0477, 0.0478, 0.0475, 0.0475, 0.0473, 0.0473, 0.0471, 0.0471, 0.047] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -8249,12 +8255,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -8305,6 +8305,12 @@ [0.048, 0.0478, 0.0476, 0.0475, 0.0474, 0.0473, 0.0471, 0.047, 0.0468, 0.0466, 0.0465, 0.0465, 0.0464, 0.0463, 0.0462, 0.0459, 0.0458, 0.0457, 0.0455, 0.0454, 0.0453] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -8314,12 +8320,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -8370,6 +8370,12 @@ [0.1786, 0.1745, 0.1758, 0.1765, 0.176, 0.1742, 0.1717, 0.17, 0.1687, 0.1673, 0.166, 0.1639, 0.1599, 0.1551, 0.151, 0.1479, 0.1438, 0.1408, 0.1379, 0.1348, 0.1314] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -8379,12 +8385,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -8435,6 +8435,12 @@ [0.1728, 0.1732, 0.173, 0.1732, 0.1737, 0.1748, 0.1745, 0.173, 0.1706, 0.1679, 0.1644, 0.1611, 0.1591, 0.1562, 0.1539, 0.1514, 0.1484, 0.1447, 0.141, 0.1373, 0.1332] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -8444,12 +8450,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -8500,6 +8500,12 @@ [0.0978, 0.0977, 0.0977, 0.0984, 0.0992, 0.1005, 0.102, 0.1032, 0.1034, 0.1036, 0.104, 0.1042, 0.104, 0.1037, 0.1034, 0.1031, 0.1023, 0.102, 0.1018, 0.1022, 0.1022] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } } } ], @@ -8509,12 +8515,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } } }, { @@ -8565,6 +8565,12 @@ [0.1029, 0.1035, 0.1035, 0.1034, 0.1042, 0.1048, 0.1051, 0.1045, 0.1039, 0.1037, 0.104, 0.1042, 0.1041, 0.104, 0.104, 0.1047, 0.1049, 0.1044, 0.1035, 0.1028, 0.1021] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } } } ], @@ -8574,12 +8580,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } } }, { @@ -8630,6 +8630,12 @@ [0.1024, 0.1027, 0.1027, 0.1023, 0.1017, 0.102, 0.1018, 0.102, 0.1023, 0.1026, 0.1035, 0.1034, 0.1035, 0.1039, 0.1035, 0.1036, 0.1031, 0.1031, 0.1022, 0.1021, 0.101] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } } } ], @@ -8639,12 +8645,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 551.0, - "unit": "nm" - } } }, { @@ -8695,6 +8695,12 @@ [0.104, 0.1053, 0.1056, 0.1047, 0.1048, 0.105, 0.1057, 0.1068, 0.107, 0.1058, 0.1065, 0.1073, 0.1074, 0.1076, 0.1082, 0.1079, 0.1071, 0.1065, 0.1057, 0.1052, 0.1045] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } } } ], @@ -8704,12 +8710,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } } }, { @@ -8760,6 +8760,12 @@ [0.1231, 0.1244, 0.125, 0.1251, 0.1248, 0.1249, 0.125, 0.1249, 0.1254, 0.1257, 0.1255, 0.1255, 0.125, 0.1244, 0.1237, 0.1237, 0.1237, 0.1234, 0.1225, 0.1221, 0.1207] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -8769,12 +8775,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -8825,6 +8825,12 @@ [0.1293, 0.1305, 0.1305, 0.1305, 0.1305, 0.1307, 0.1304, 0.1307, 0.1311, 0.1308, 0.1305, 0.1297, 0.1292, 0.1292, 0.1287, 0.128, 0.1274, 0.1269, 0.1269, 0.1256, 0.1246] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -8834,12 +8840,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -8890,6 +8890,12 @@ [0.1009, 0.1022, 0.1031, 0.1043, 0.1026, 0.101, 0.1002, 0.1, 0.1008, 0.1011, 0.102, 0.1021, 0.1023, 0.1026, 0.1024, 0.1029, 0.1036, 0.104, 0.1041, 0.1046, 0.1046] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } } } ], @@ -8899,12 +8905,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } } }, { @@ -8955,6 +8955,12 @@ [0.0932, 0.0937, 0.0933, 0.0928, 0.0919, 0.0931, 0.0949, 0.096, 0.097, 0.0971, 0.0981, 0.0987, 0.0987, 0.0994, 0.1002, 0.1006, 0.1007, 0.101, 0.1013, 0.1015, 0.1015] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } } } ], @@ -8964,12 +8970,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } } }, { @@ -9020,6 +9020,12 @@ [0.1033, 0.1038, 0.1051, 0.1074, 0.1087, 0.1099, 0.1113, 0.1115, 0.1103, 0.1089, 0.1089, 0.1089, 0.1094, 0.1093, 0.1091, 0.1093, 0.1094, 0.1098, 0.1097, 0.1092, 0.1086] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } } } ], @@ -9029,12 +9035,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } } }, { @@ -9085,6 +9085,12 @@ [0.1072, 0.1075, 0.1079, 0.1089, 0.1095, 0.1108, 0.1104, 0.1082, 0.1072, 0.1074, 0.1077, 0.1087, 0.1097, 0.1101, 0.1107, 0.1111, 0.111, 0.1097, 0.1099, 0.1096, 0.1093] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } } } ], @@ -9094,12 +9100,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } } }, { @@ -9150,6 +9150,12 @@ [0.1156, 0.1148, 0.1151, 0.1158, 0.1154, 0.1158, 0.1178, 0.1184, 0.1187, 0.1192, 0.1194, 0.1196, 0.1195, 0.1192, 0.1195, 0.1201, 0.1185, 0.1185, 0.1183, 0.1176, 0.1172] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } } } ], @@ -9159,12 +9165,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } } }, { @@ -9215,6 +9215,12 @@ [0.1099, 0.1103, 0.1111, 0.1101, 0.1098, 0.1106, 0.1113, 0.1116, 0.1111, 0.1114, 0.1115, 0.1117, 0.1121, 0.1114, 0.1111, 0.1112, 0.1116, 0.1117, 0.1114, 0.1106, 0.1107] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } } } ], @@ -9224,12 +9230,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 549.0, - "unit": "nm" - } } }, { @@ -9280,6 +9280,12 @@ [0.0507, 0.0507, 0.0503, 0.0506, 0.0501, 0.0501, 0.0501, 0.05, 0.0499, 0.0499, 0.0498, 0.0496, 0.0495, 0.0494, 0.0493, 0.0492, 0.049, 0.0488, 0.0489, 0.0488, 0.0487] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -9289,12 +9295,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -9345,6 +9345,12 @@ [0.0523, 0.0522, 0.052, 0.0521, 0.0519, 0.0517, 0.0515, 0.0514, 0.0517, 0.0515, 0.0512, 0.0512, 0.0514, 0.0509, 0.0509, 0.0507, 0.0507, 0.0506, 0.0505, 0.0505, 0.0505] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -9354,12 +9360,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -9410,6 +9410,12 @@ [0.1724, 0.1715, 0.1727, 0.1747, 0.1757, 0.1736, 0.1686, 0.1678, 0.1696, 0.17, 0.1689, 0.1664, 0.1637, 0.1592, 0.1542, 0.1499, 0.1449, 0.1416, 0.1387, 0.1363, 0.1336] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -9419,12 +9425,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -9475,6 +9475,12 @@ [0.0487, 0.0484, 0.0481, 0.048, 0.0477, 0.0476, 0.0473, 0.0472, 0.0472, 0.047, 0.0469, 0.0467, 0.0466, 0.0463, 0.0462, 0.0462, 0.046, 0.0457, 0.0456, 0.0453, 0.0452] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -9484,12 +9490,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -9540,6 +9540,12 @@ [0.0954, 0.0969, 0.0973, 0.0974, 0.0982, 0.099, 0.1002, 0.1013, 0.102, 0.1025, 0.1024, 0.1019, 0.1011, 0.1004, 0.1003, 0.1004, 0.1009, 0.1006, 0.1005, 0.1007, 0.1002] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -9549,12 +9555,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -9605,6 +9605,12 @@ [0.048, 0.0478, 0.0476, 0.0475, 0.0473, 0.0472, 0.0471, 0.047, 0.0471, 0.047, 0.047, 0.0468, 0.0467, 0.0467, 0.0465, 0.0465, 0.0463, 0.0464, 0.0461, 0.0461, 0.0459] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -9614,12 +9620,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -9670,6 +9670,12 @@ [0.1045, 0.1057, 0.1056, 0.1067, 0.1072, 0.1084, 0.1086, 0.1088, 0.1091, 0.1095, 0.11, 0.1104, 0.1104, 0.1104, 0.1101, 0.1101, 0.1096, 0.1095, 0.109, 0.1091, 0.1081] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } } } ], @@ -9679,12 +9685,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } } }, { @@ -9735,6 +9735,12 @@ [0.0479, 0.0477, 0.0474, 0.0473, 0.0471, 0.047, 0.0467, 0.0466, 0.0467, 0.0466, 0.0465, 0.0463, 0.0462, 0.0461, 0.046, 0.0459, 0.0456, 0.0456, 0.0453, 0.0453, 0.0452] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -9744,12 +9750,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -9800,6 +9800,12 @@ [0.1222, 0.1231, 0.1237, 0.1252, 0.125, 0.1245, 0.1246, 0.1248, 0.1249, 0.1251, 0.1255, 0.1249, 0.1241, 0.1238, 0.1222, 0.1223, 0.1228, 0.1224, 0.1209, 0.1214, 0.1195] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } } } ], @@ -9809,12 +9815,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } } }, { @@ -9865,6 +9865,12 @@ [0.0605, 0.0601, 0.06, 0.06, 0.0596, 0.0596, 0.0593, 0.0592, 0.0592, 0.0592, 0.0592, 0.0589, 0.0588, 0.0586, 0.0585, 0.0584, 0.0583, 0.0579, 0.058, 0.0576, 0.0575] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -9874,12 +9880,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -9930,6 +9930,12 @@ [0.0984, 0.0993, 0.0996, 0.1003, 0.0999, 0.0998, 0.1001, 0.1001, 0.1007, 0.1003, 0.101, 0.1018, 0.1019, 0.1026, 0.1028, 0.1043, 0.1048, 0.1044, 0.1038, 0.1044, 0.1044] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } } } ], @@ -9939,12 +9945,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } } }, { @@ -9995,6 +9995,12 @@ [0.0495, 0.0493, 0.049, 0.0489, 0.0487, 0.0485, 0.0483, 0.0481, 0.0482, 0.0481, 0.0479, 0.0477, 0.0475, 0.0474, 0.0472, 0.0471, 0.0469, 0.0468, 0.0465, 0.0464, 0.0462] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -10004,12 +10010,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -10060,6 +10060,12 @@ [0.1063, 0.1072, 0.1086, 0.1095, 0.1094, 0.1078, 0.1075, 0.1066, 0.1065, 0.1074, 0.1068, 0.1065, 0.1074, 0.1076, 0.1079, 0.1091, 0.1091, 0.1094, 0.1094, 0.1088, 0.1088] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -10069,12 +10075,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -10125,6 +10125,12 @@ [0.0493, 0.049, 0.0487, 0.0488, 0.0484, 0.0484, 0.0482, 0.0481, 0.0481, 0.0481, 0.048, 0.0477, 0.0477, 0.0475, 0.0473, 0.0473, 0.0471, 0.047, 0.0468, 0.0467, 0.0464] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -10134,12 +10140,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -10190,6 +10190,12 @@ [0.1168, 0.1171, 0.1148, 0.1172, 0.1182, 0.1187, 0.1198, 0.1202, 0.1191, 0.1188, 0.118, 0.1176, 0.1172, 0.1172, 0.1172, 0.1175, 0.1174, 0.1171, 0.1167, 0.1165, 0.1162] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } } } ], @@ -10199,12 +10205,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } } }, { @@ -10255,6 +10255,12 @@ [0.0486, 0.0485, 0.0481, 0.0482, 0.048, 0.0479, 0.0477, 0.0477, 0.0477, 0.0476, 0.0476, 0.0475, 0.0474, 0.0472, 0.0472, 0.0471, 0.0469, 0.0469, 0.0468, 0.0467, 0.0465] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -10264,12 +10270,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -10320,6 +10320,12 @@ [0.049, 0.0487, 0.0486, 0.0486, 0.0483, 0.0482, 0.0481, 0.048, 0.048, 0.048, 0.048, 0.0478, 0.0477, 0.0475, 0.0475, 0.0475, 0.0473, 0.0471, 0.047, 0.0469, 0.0468] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -10329,12 +10335,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -10385,6 +10385,12 @@ [0.0511, 0.0511, 0.0509, 0.0509, 0.0507, 0.0505, 0.0504, 0.0504, 0.0507, 0.0504, 0.0501, 0.0501, 0.0503, 0.0499, 0.0499, 0.0497, 0.0495, 0.0495, 0.0496, 0.0494, 0.0494] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -10394,12 +10400,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -10450,6 +10450,12 @@ [0.1358, 0.1357, 0.1362, 0.1366, 0.1377, 0.1376, 0.1368, 0.1365, 0.1358, 0.137, 0.1368, 0.1357, 0.135, 0.1342, 0.1335, 0.1331, 0.1313, 0.1307, 0.1301, 0.129, 0.127] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -10459,12 +10465,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -10515,6 +10515,12 @@ [0.1404, 0.1391, 0.1393, 0.1399, 0.141, 0.1422, 0.1431, 0.1443, 0.1464, 0.1469, 0.1458, 0.1446, 0.1436, 0.1424, 0.1412, 0.1404, 0.1386, 0.1362, 0.1345, 0.1326, 0.131] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -10524,12 +10530,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -10580,6 +10580,12 @@ [0.094, 0.0946, 0.0955, 0.0964, 0.097, 0.0975, 0.098, 0.0988, 0.0988, 0.0994, 0.1001, 0.1006, 0.1013, 0.1019, 0.1023, 0.1022, 0.1019, 0.1015, 0.1015, 0.1016, 0.102] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } } } ], @@ -10589,12 +10595,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } } }, { @@ -10645,6 +10645,12 @@ [0.0968, 0.0979, 0.0985, 0.0993, 0.0994, 0.0993, 0.0996, 0.1013, 0.1019, 0.1013, 0.1001, 0.0988, 0.098, 0.0989, 0.0996, 0.1001, 0.1009, 0.1018, 0.1023, 0.1018, 0.1014] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } } } ], @@ -10654,12 +10660,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 561.0, - "unit": "nm" - } } }, { @@ -10710,6 +10710,12 @@ [0.0964, 0.0964, 0.0962, 0.0962, 0.0953, 0.0947, 0.0949, 0.0957, 0.0972, 0.097, 0.0968, 0.0973, 0.0973, 0.0975, 0.0971, 0.0969, 0.0976, 0.0978, 0.0985, 0.0993, 0.0996] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } } } ], @@ -10719,12 +10725,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 565.0, - "unit": "nm" - } } }, { @@ -10775,6 +10775,12 @@ [0.101, 0.1016, 0.1024, 0.1029, 0.1038, 0.1049, 0.1049, 0.1044, 0.1039, 0.1042, 0.1045, 0.1057, 0.1064, 0.1061, 0.1066, 0.1065, 0.1056, 0.105, 0.1048, 0.105, 0.1053] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } } } ], @@ -10784,12 +10790,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } } }, { @@ -10840,6 +10840,12 @@ [0.117, 0.118, 0.1192, 0.1212, 0.121, 0.1197, 0.1187, 0.1184, 0.1188, 0.1186, 0.1189, 0.1188, 0.1183, 0.1181, 0.1167, 0.1164, 0.116, 0.1155, 0.114, 0.1139, 0.1124] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -10849,12 +10855,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -10905,6 +10905,12 @@ [0.1179, 0.1189, 0.1193, 0.1195, 0.1191, 0.1188, 0.1194, 0.119, 0.1191, 0.1198, 0.1198, 0.1194, 0.1188, 0.1181, 0.1181, 0.1175, 0.1167, 0.1164, 0.1165, 0.1155, 0.115] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -10914,12 +10920,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -10970,6 +10970,12 @@ [0.0969, 0.0982, 0.0995, 0.1005, 0.1027, 0.1047, 0.1059, 0.1061, 0.106, 0.1057, 0.106, 0.106, 0.1057, 0.1053, 0.1055, 0.1044, 0.1043, 0.104, 0.1037, 0.1033, 0.1028] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } } } ], @@ -10979,12 +10985,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } } }, { @@ -11035,6 +11035,12 @@ [0.107, 0.1073, 0.1075, 0.1084, 0.1083, 0.1077, 0.1078, 0.1077, 0.1064, 0.1052, 0.1042, 0.1031, 0.1034, 0.1047, 0.106, 0.1072, 0.1081, 0.1087, 0.1094, 0.1091, 0.1087] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } } } ], @@ -11044,12 +11050,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 561.0, - "unit": "nm" - } } }, { @@ -11100,6 +11100,12 @@ [0.1059, 0.1062, 0.1048, 0.1042, 0.1045, 0.1059, 0.1066, 0.1075, 0.1077, 0.1078, 0.1074, 0.1071, 0.1052, 0.1044, 0.1045, 0.1046, 0.1033, 0.1032, 0.1031, 0.1025, 0.1016] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -11109,12 +11115,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -11165,6 +11165,12 @@ [0.0946, 0.0969, 0.0985, 0.1001, 0.1007, 0.1004, 0.1004, 0.0998, 0.0992, 0.0996, 0.1007, 0.1019, 0.1036, 0.1039, 0.1042, 0.1046, 0.1051, 0.1055, 0.1055, 0.1049, 0.1046] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } } } ], @@ -11174,12 +11180,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 559.0, - "unit": "nm" - } } }, { @@ -11230,6 +11230,12 @@ [0.1894, 0.1925, 0.1933, 0.1956, 0.1967, 0.1978, 0.1969, 0.1961, 0.1934, 0.1912, 0.188, 0.1837, 0.1804, 0.1757, 0.1724, 0.1691, 0.1654, 0.1614, 0.1578, 0.1535, 0.1498] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -11239,12 +11245,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -11295,6 +11295,12 @@ [0.1937, 0.1944, 0.1965, 0.1974, 0.1975, 0.1972, 0.1954, 0.1932, 0.1902, 0.1867, 0.183, 0.1789, 0.1755, 0.1713, 0.1677, 0.1638, 0.16, 0.1566, 0.1528, 0.149, 0.1452] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -11304,12 +11310,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -11360,6 +11360,12 @@ [0.0457, 0.0456, 0.0454, 0.0454, 0.0452, 0.0451, 0.0451, 0.045, 0.0448, 0.0448, 0.0447, 0.0446, 0.0446, 0.0446, 0.0445, 0.0445, 0.0444, 0.0443, 0.0442, 0.0441, 0.044] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -11369,12 +11375,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -11425,6 +11425,12 @@ [0.0505, 0.0506, 0.0504, 0.0505, 0.0503, 0.0501, 0.0501, 0.05, 0.0502, 0.0499, 0.0495, 0.0496, 0.0499, 0.0495, 0.0494, 0.0492, 0.0492, 0.0492, 0.0491, 0.0493, 0.0494] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -11434,12 +11440,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -11490,6 +11490,12 @@ [0.1365, 0.1338, 0.1337, 0.1353, 0.1375, 0.1386, 0.1384, 0.1387, 0.1393, 0.1395, 0.139, 0.1378, 0.1366, 0.1353, 0.1346, 0.1339, 0.1315, 0.1298, 0.1284, 0.1268, 0.1255] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -11499,12 +11505,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -11555,6 +11555,12 @@ [0.0471, 0.047, 0.0468, 0.0466, 0.0464, 0.0463, 0.0461, 0.0459, 0.0456, 0.0455, 0.0454, 0.0452, 0.0452, 0.0449, 0.0448, 0.0447, 0.0445, 0.0443, 0.0441, 0.044, 0.0438] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -11564,12 +11570,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -11620,6 +11620,12 @@ [0.0989, 0.0997, 0.1006, 0.1015, 0.1007, 0.0996, 0.0994, 0.0997, 0.0998, 0.0993, 0.0998, 0.1004, 0.1016, 0.1019, 0.1032, 0.1044, 0.1049, 0.1045, 0.1049, 0.104, 0.1037] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } } } ], @@ -11629,12 +11635,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } } }, { @@ -11685,6 +11685,12 @@ [0.0456, 0.0455, 0.0452, 0.0451, 0.0449, 0.0447, 0.0446, 0.0445, 0.0443, 0.0442, 0.0441, 0.044, 0.0438, 0.0439, 0.0437, 0.0436, 0.0435, 0.0433, 0.0433, 0.0432, 0.0431] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -11694,12 +11700,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -11750,6 +11750,12 @@ [0.0985, 0.0982, 0.0984, 0.0984, 0.0987, 0.0994, 0.1001, 0.1013, 0.1023, 0.1029, 0.1033, 0.104, 0.1047, 0.1058, 0.1062, 0.106, 0.1056, 0.1052, 0.1048, 0.1047, 0.1047] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } } } ], @@ -11759,12 +11765,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } } }, { @@ -11815,6 +11815,12 @@ [0.0447, 0.0445, 0.0444, 0.0443, 0.0442, 0.0442, 0.044, 0.0439, 0.0437, 0.0436, 0.0435, 0.0434, 0.0435, 0.0435, 0.0433, 0.0434, 0.0432, 0.0431, 0.0431, 0.0429, 0.0428] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -11824,12 +11830,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -11880,6 +11880,12 @@ [0.1184, 0.1187, 0.1184, 0.1192, 0.1191, 0.1191, 0.1182, 0.1177, 0.1175, 0.1178, 0.1187, 0.1192, 0.1188, 0.118, 0.1164, 0.1156, 0.1154, 0.1151, 0.1142, 0.1147, 0.1141] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -11889,12 +11895,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -11945,6 +11945,12 @@ [0.0601, 0.0599, 0.0597, 0.0597, 0.0594, 0.0594, 0.0592, 0.0591, 0.0589, 0.0589, 0.0587, 0.0586, 0.0586, 0.0585, 0.0583, 0.0583, 0.0582, 0.058, 0.058, 0.0577, 0.0575] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -11954,12 +11960,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -12010,6 +12010,12 @@ [0.1055, 0.1059, 0.1054, 0.1048, 0.1042, 0.1038, 0.1028, 0.1025, 0.1025, 0.1031, 0.1031, 0.1036, 0.1032, 0.1034, 0.1036, 0.1043, 0.1044, 0.1039, 0.1039, 0.1032, 0.1027] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -12019,12 +12025,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -12075,6 +12075,12 @@ [0.0461, 0.0459, 0.0457, 0.0456, 0.0454, 0.0453, 0.0451, 0.045, 0.0449, 0.0447, 0.0447, 0.0445, 0.0445, 0.0444, 0.0443, 0.0443, 0.0441, 0.044, 0.0439, 0.0438, 0.0436] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -12084,12 +12090,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -12140,6 +12140,12 @@ [0.1012, 0.1021, 0.1025, 0.103, 0.1034, 0.103, 0.1016, 0.1017, 0.1021, 0.1021, 0.1025, 0.1035, 0.103, 0.1029, 0.103, 0.1028, 0.1036, 0.1038, 0.1043, 0.1043, 0.1038] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } } } ], @@ -12149,12 +12155,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 561.0, - "unit": "nm" - } } }, { @@ -12205,6 +12205,12 @@ [0.0467, 0.0464, 0.0462, 0.0461, 0.0459, 0.0458, 0.0455, 0.0454, 0.0452, 0.0451, 0.045, 0.0449, 0.0449, 0.0446, 0.0444, 0.0444, 0.0443, 0.0441, 0.044, 0.0438, 0.0437] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -12214,12 +12220,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -12270,6 +12270,12 @@ [0.1927, 0.1928, 0.1924, 0.1942, 0.1937, 0.1935, 0.1907, 0.1882, 0.1853, 0.1836, 0.181, 0.1775, 0.1752, 0.1713, 0.1688, 0.1662, 0.1629, 0.159, 0.1556, 0.1514, 0.1478] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -12279,12 +12285,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -12335,6 +12335,12 @@ [0.0473, 0.0472, 0.0469, 0.047, 0.0468, 0.0467, 0.0465, 0.0465, 0.0464, 0.0465, 0.0493, 0.049, 0.0484, 0.048, 0.0479, 0.0479, 0.0478, 0.0476, 0.0473, 0.0472, 0.047] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } } } ], @@ -12344,12 +12350,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } } }, { @@ -12400,6 +12400,12 @@ [0.0485, 0.0483, 0.0481, 0.048, 0.0479, 0.0478, 0.0476, 0.0475, 0.0474, 0.0473, 0.0473, 0.0472, 0.0472, 0.0471, 0.047, 0.0469, 0.0467, 0.0468, 0.0465, 0.0464, 0.0463] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -12409,12 +12415,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -12465,6 +12465,12 @@ [0.0539, 0.054, 0.0539, 0.0539, 0.0537, 0.0535, 0.0535, 0.0535, 0.0536, 0.0534, 0.053, 0.053, 0.0533, 0.0528, 0.053, 0.0527, 0.0526, 0.0527, 0.0526, 0.0528, 0.0528] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -12474,12 +12480,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -12530,6 +12530,12 @@ [0.086, 0.0875, 0.0883, 0.089, 0.0882, 0.0879, 0.0889, 0.0892, 0.0897, 0.0908, 0.0919, 0.0929, 0.0921, 0.0918, 0.092, 0.0924, 0.0913, 0.0918, 0.0916, 0.0918, 0.0919] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } } } ], @@ -12539,12 +12545,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } } }, { @@ -12595,6 +12595,12 @@ [0.0927, 0.0929, 0.0932, 0.0944, 0.095, 0.0949, 0.0945, 0.094, 0.0931, 0.0922, 0.0917, 0.0925, 0.0945, 0.0957, 0.0965, 0.0972, 0.0973, 0.0965, 0.096, 0.0964, 0.0964] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } } } ], @@ -12604,12 +12610,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } } }, { @@ -12660,6 +12660,12 @@ [0.0989, 0.099, 0.0992, 0.0997, 0.1004, 0.1009, 0.1016, 0.1019, 0.1021, 0.1017, 0.1021, 0.1019, 0.1022, 0.1024, 0.1019, 0.1018, 0.1022, 0.1013, 0.1012, 0.1007, 0.1002] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } } } ], @@ -12669,12 +12675,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 551.0, - "unit": "nm" - } } }, { @@ -12725,6 +12725,12 @@ [0.1021, 0.1027, 0.1037, 0.1047, 0.1067, 0.1065, 0.1042, 0.1025, 0.1017, 0.102, 0.1033, 0.1044, 0.1043, 0.1042, 0.1037, 0.1033, 0.1034, 0.1039, 0.1046, 0.1045, 0.104] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -12734,12 +12740,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -12790,6 +12790,12 @@ [0.0893, 0.0895, 0.0901, 0.0896, 0.0899, 0.0889, 0.0881, 0.0874, 0.0861, 0.0871, 0.0883, 0.0894, 0.0903, 0.0905, 0.0904, 0.0908, 0.0911, 0.0909, 0.0915, 0.0909, 0.0918] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } } } ], @@ -12799,12 +12805,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 565.0, - "unit": "nm" - } } }, { @@ -12855,6 +12855,12 @@ [0.0894, 0.0899, 0.0891, 0.088, 0.0878, 0.0875, 0.0864, 0.0861, 0.0875, 0.0885, 0.09, 0.0902, 0.0894, 0.0889, 0.0893, 0.0902, 0.0905, 0.0899, 0.0899, 0.0895, 0.0899] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } } } ], @@ -12864,12 +12870,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } } }, { @@ -12920,6 +12920,12 @@ [0.1047, 0.1054, 0.1065, 0.1077, 0.1084, 0.1085, 0.1076, 0.1067, 0.1067, 0.1084, 0.109, 0.1089, 0.1089, 0.1082, 0.108, 0.1077, 0.1073, 0.1071, 0.1068, 0.1065, 0.1059] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } } } ], @@ -12929,12 +12935,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } } }, { @@ -12985,6 +12985,12 @@ [0.1054, 0.1057, 0.1058, 0.1061, 0.1059, 0.1067, 0.1065, 0.1054, 0.1045, 0.1047, 0.1048, 0.1043, 0.1047, 0.1045, 0.1038, 0.103, 0.1022, 0.1008, 0.0993, 0.0985, 0.0972] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -12994,12 +13000,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -13050,6 +13050,12 @@ [0.104, 0.1053, 0.1063, 0.105, 0.1048, 0.1026, 0.1036, 0.1048, 0.1043, 0.1058, 0.1057, 0.1047, 0.1048, 0.103, 0.1049, 0.1048, 0.1058, 0.1058, 0.1067, 0.1046, 0.105] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } } } ], @@ -13059,12 +13065,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 561.0, - "unit": "nm" - } } }, { @@ -13115,6 +13115,12 @@ [0.0914, 0.092, 0.0932, 0.0957, 0.0985, 0.1008, 0.1014, 0.0991, 0.0953, 0.0938, 0.0942, 0.0964, 0.0976, 0.0984, 0.0994, 0.101, 0.1019, 0.1021, 0.1026, 0.1029, 0.1028] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } } } ], @@ -13124,12 +13130,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } } }, { @@ -13180,6 +13180,12 @@ [0.0871, 0.0886, 0.0901, 0.0917, 0.0921, 0.0918, 0.0911, 0.0907, 0.0907, 0.0925, 0.0931, 0.0926, 0.0919, 0.0919, 0.0915, 0.0917, 0.0914, 0.0912, 0.091, 0.0906, 0.0905] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } } } ], @@ -13189,12 +13195,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } } }, { @@ -13245,6 +13245,12 @@ [0.0849, 0.085, 0.0852, 0.0873, 0.0904, 0.0921, 0.0915, 0.0897, 0.0898, 0.0906, 0.0921, 0.0923, 0.0925, 0.0934, 0.0929, 0.0942, 0.0941, 0.094, 0.0943, 0.0945, 0.0941] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } } } ], @@ -13254,12 +13260,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } } }, { @@ -13310,6 +13310,12 @@ [0.1509, 0.1526, 0.1515, 0.1482, 0.1469, 0.147, 0.1485, 0.1502, 0.1503, 0.1499, 0.149, 0.1473, 0.1454, 0.1425, 0.1396, 0.1372, 0.1334, 0.1304, 0.1272, 0.1244, 0.1211] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -13319,12 +13325,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -13375,6 +13375,12 @@ [0.1633, 0.1639, 0.164, 0.1633, 0.1631, 0.1642, 0.1636, 0.161, 0.1581, 0.1566, 0.1554, 0.1534, 0.1517, 0.1489, 0.1462, 0.1433, 0.1403, 0.1373, 0.134, 0.1308, 0.1271] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -13384,12 +13390,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -13440,6 +13440,12 @@ [0.0414, 0.0413, 0.041, 0.0411, 0.0409, 0.0409, 0.0408, 0.0407, 0.0405, 0.0404, 0.0405, 0.0403, 0.0403, 0.0402, 0.0402, 0.0402, 0.0401, 0.0401, 0.0399, 0.0398, 0.0397] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -13449,12 +13455,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -13505,6 +13505,12 @@ [0.0426, 0.0424, 0.0422, 0.0422, 0.042, 0.0419, 0.0418, 0.0417, 0.0416, 0.0415, 0.0414, 0.0413, 0.0412, 0.0411, 0.0409, 0.041, 0.0409, 0.0409, 0.0407, 0.0405, 0.0404] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -13514,12 +13520,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -13570,6 +13570,12 @@ [0.086, 0.087, 0.0871, 0.0881, 0.0889, 0.0897, 0.0905, 0.0905, 0.0892, 0.0898, 0.0909, 0.0905, 0.0897, 0.09, 0.0905, 0.0918, 0.0906, 0.0909, 0.0915, 0.091, 0.0908] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } } } ], @@ -13579,12 +13585,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } } }, { @@ -13635,6 +13635,12 @@ [0.0405, 0.0403, 0.04, 0.0399, 0.0399, 0.0397, 0.0396, 0.0396, 0.0395, 0.0393, 0.0394, 0.0392, 0.0392, 0.0391, 0.039, 0.0391, 0.0391, 0.039, 0.0389, 0.0388, 0.0388] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -13644,12 +13650,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -13700,6 +13700,12 @@ [0.0996, 0.1005, 0.1009, 0.1014, 0.1008, 0.1003, 0.1005, 0.1006, 0.1009, 0.1015, 0.1021, 0.102, 0.1019, 0.1017, 0.1014, 0.1011, 0.1007, 0.0997, 0.0986, 0.0975, 0.0964] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } } } ], @@ -13709,12 +13715,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } } }, { @@ -13765,6 +13765,12 @@ [0.0411, 0.041, 0.0407, 0.0407, 0.0406, 0.0405, 0.0404, 0.0404, 0.0402, 0.0401, 0.0401, 0.04, 0.04, 0.04, 0.0399, 0.04, 0.04, 0.0398, 0.0397, 0.0398, 0.0396] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -13774,12 +13780,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -13830,6 +13830,12 @@ [0.0922, 0.0933, 0.0939, 0.0932, 0.0925, 0.0928, 0.0928, 0.0923, 0.091, 0.0907, 0.0907, 0.0912, 0.0918, 0.0925, 0.0914, 0.0909, 0.0896, 0.0892, 0.0892, 0.0892, 0.0893] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } } } ], @@ -13839,12 +13845,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 529.0, - "unit": "nm" - } } }, { @@ -13895,6 +13895,12 @@ [0.0403, 0.0401, 0.0398, 0.0399, 0.0397, 0.0396, 0.0395, 0.0394, 0.0392, 0.0392, 0.0392, 0.0391, 0.039, 0.039, 0.0389, 0.0389, 0.0388, 0.0385, 0.0386, 0.0386, 0.0384] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -13904,12 +13910,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -13960,6 +13960,12 @@ [0.1052, 0.1049, 0.1049, 0.1047, 0.1045, 0.1051, 0.1054, 0.106, 0.1054, 0.1052, 0.1064, 0.1069, 0.1069, 0.1062, 0.1048, 0.103, 0.102, 0.1016, 0.1017, 0.1013, 0.1012] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } } } ], @@ -13969,12 +13975,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } } }, { @@ -14025,6 +14025,12 @@ [0.0412, 0.041, 0.0408, 0.0408, 0.0406, 0.0405, 0.0403, 0.0402, 0.0401, 0.04, 0.0398, 0.0398, 0.0398, 0.0397, 0.0396, 0.0395, 0.0395, 0.0397, 0.0392, 0.0393, 0.0391] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -14034,12 +14040,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -14090,6 +14090,12 @@ [0.1046, 0.105, 0.106, 0.106, 0.1071, 0.1081, 0.1086, 0.1074, 0.1069, 0.1091, 0.1085, 0.1072, 0.1068, 0.1053, 0.1074, 0.1076, 0.1098, 0.1104, 0.1108, 0.1088, 0.109] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } } } ], @@ -14099,12 +14105,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 561.0, - "unit": "nm" - } } }, { @@ -14155,6 +14155,12 @@ [0.0412, 0.041, 0.0408, 0.0408, 0.0406, 0.0404, 0.0403, 0.0402, 0.0401, 0.0399, 0.0399, 0.0398, 0.0397, 0.0397, 0.0396, 0.0396, 0.0395, 0.0394, 0.0393, 0.0393, 0.0391] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -14164,12 +14170,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -14220,6 +14220,12 @@ [0.0888, 0.0893, 0.0892, 0.0904, 0.0903, 0.0907, 0.0914, 0.0906, 0.0892, 0.0892, 0.0893, 0.0897, 0.0905, 0.0917, 0.0933, 0.0947, 0.095, 0.0944, 0.0933, 0.0924, 0.0918] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } } } ], @@ -14229,12 +14235,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } } }, { @@ -14285,6 +14285,12 @@ [0.0408, 0.0405, 0.0403, 0.0402, 0.04, 0.0399, 0.0398, 0.0397, 0.0395, 0.0393, 0.0393, 0.0392, 0.0391, 0.039, 0.0388, 0.0389, 0.0389, 0.0387, 0.0386, 0.0384, 0.0384] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -14294,12 +14300,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -14350,6 +14350,12 @@ [0.1659, 0.1658, 0.1654, 0.1663, 0.167, 0.1667, 0.1654, 0.163, 0.16, 0.1575, 0.1551, 0.1521, 0.1496, 0.1466, 0.1437, 0.1413, 0.1375, 0.1343, 0.1306, 0.1272, 0.1237] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -14359,12 +14365,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -14415,6 +14415,12 @@ [0.0426, 0.0425, 0.0422, 0.0423, 0.0421, 0.0421, 0.0419, 0.0418, 0.0417, 0.0416, 0.0416, 0.0414, 0.0415, 0.0413, 0.0411, 0.0412, 0.0411, 0.0409, 0.0409, 0.0407, 0.0407] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -14424,12 +14430,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -14480,6 +14480,12 @@ [0.042, 0.0418, 0.0415, 0.0416, 0.0414, 0.0414, 0.0413, 0.0412, 0.0409, 0.0409, 0.0409, 0.0408, 0.0406, 0.0406, 0.0405, 0.0405, 0.0406, 0.0403, 0.0402, 0.0403, 0.04] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -14489,12 +14495,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -14545,6 +14545,12 @@ [0.0421, 0.042, 0.0416, 0.0416, 0.0414, 0.0414, 0.0412, 0.0411, 0.0409, 0.0409, 0.0408, 0.0407, 0.0407, 0.0406, 0.0405, 0.0405, 0.0404, 0.0403, 0.0401, 0.0401, 0.0399] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -14554,12 +14560,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -14610,6 +14610,12 @@ [0.0909, 0.091, 0.0912, 0.0921, 0.0935, 0.0945, 0.0949, 0.0939, 0.0941, 0.095, 0.0962, 0.0963, 0.0963, 0.0965, 0.0968, 0.0977, 0.0968, 0.0968, 0.0973, 0.0981, 0.0979] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } } } ], @@ -14619,12 +14625,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } } }, { @@ -14675,6 +14675,12 @@ [0.0909, 0.0916, 0.0923, 0.0944, 0.0951, 0.0954, 0.0952, 0.0952, 0.0943, 0.0932, 0.0935, 0.0949, 0.095, 0.0952, 0.0954, 0.0969, 0.0967, 0.0955, 0.0958, 0.0953, 0.0954] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } } } ], @@ -14684,12 +14690,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } } }, { @@ -14740,6 +14740,12 @@ [0.0959, 0.096, 0.0976, 0.0998, 0.1014, 0.1025, 0.1022, 0.1017, 0.1024, 0.103, 0.1036, 0.104, 0.1032, 0.102, 0.1018, 0.1017, 0.1014, 0.1007, 0.1005, 0.1001, 0.0995] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } } } ], @@ -14749,12 +14755,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } } }, { @@ -14805,6 +14805,12 @@ [0.1012, 0.1028, 0.1038, 0.1047, 0.105, 0.1065, 0.1062, 0.1055, 0.1045, 0.1036, 0.1019, 0.101, 0.0998, 0.101, 0.1021, 0.1025, 0.103, 0.1026, 0.1029, 0.1031, 0.1033] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -14814,12 +14820,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -14870,6 +14870,12 @@ [0.1003, 0.1001, 0.1002, 0.1014, 0.1023, 0.1043, 0.1055, 0.1046, 0.1055, 0.1061, 0.106, 0.1064, 0.1071, 0.1077, 0.1082, 0.1081, 0.1078, 0.1075, 0.1076, 0.1075, 0.1072] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } } } ], @@ -14879,12 +14885,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } } }, { @@ -14935,6 +14935,12 @@ [0.1034, 0.1056, 0.1068, 0.1073, 0.107, 0.1061, 0.1061, 0.1045, 0.1035, 0.1042, 0.1047, 0.1057, 0.1046, 0.1046, 0.1041, 0.1038, 0.1028, 0.1025, 0.1017, 0.1011, 0.1005] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -14944,12 +14950,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -15000,6 +15000,12 @@ [0.0999, 0.101, 0.1025, 0.1045, 0.1064, 0.1096, 0.1103, 0.1083, 0.1071, 0.1063, 0.1056, 0.1054, 0.1051, 0.1044, 0.1035, 0.1026, 0.1013, 0.1011, 0.1008, 0.1003, 0.0993] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } } } ], @@ -15009,12 +15015,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } } }, { @@ -15065,6 +15065,12 @@ [0.1096, 0.1103, 0.1102, 0.111, 0.1118, 0.1124, 0.1127, 0.114, 0.1144, 0.1134, 0.1119, 0.1125, 0.1119, 0.1124, 0.1112, 0.11, 0.1091, 0.1085, 0.107, 0.1084, 0.1079] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -15074,12 +15080,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -15130,6 +15130,12 @@ [0.1053, 0.1063, 0.106, 0.1052, 0.1062, 0.1064, 0.1048, 0.1036, 0.1025, 0.1036, 0.1037, 0.1042, 0.1042, 0.1028, 0.1037, 0.1025, 0.1021, 0.101, 0.1009, 0.0987, 0.0989] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -15139,12 +15145,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -15195,6 +15195,12 @@ [0.0961, 0.0971, 0.0982, 0.1002, 0.1031, 0.1031, 0.102, 0.1009, 0.1012, 0.1015, 0.1012, 0.1003, 0.1004, 0.1001, 0.0992, 0.098, 0.0965, 0.0962, 0.0958, 0.0954, 0.0952] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -15204,12 +15210,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -15260,6 +15260,12 @@ [0.1046, 0.103, 0.1019, 0.1019, 0.1025, 0.1026, 0.1017, 0.1012, 0.1018, 0.1015, 0.1018, 0.1049, 0.1071, 0.108, 0.1086, 0.1091, 0.109, 0.1076, 0.1077, 0.1068, 0.1067] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } } } ], @@ -15269,12 +15275,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } } }, { @@ -15325,6 +15325,12 @@ [0.1, 0.1011, 0.1004, 0.1011, 0.1007, 0.0986, 0.0954, 0.0971, 0.0995, 0.1005, 0.1006, 0.1015, 0.1023, 0.103, 0.1043, 0.1044, 0.1041, 0.1041, 0.1041, 0.1047, 0.1043] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } } } ], @@ -15334,12 +15340,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } } }, { @@ -15390,6 +15390,12 @@ [0.1183, 0.1192, 0.1198, 0.1206, 0.1203, 0.1193, 0.1177, 0.1161, 0.1143, 0.1133, 0.1131, 0.1129, 0.1132, 0.1173, 0.1176, 0.1184, 0.1174, 0.1167, 0.1158, 0.1155, 0.1147] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -15399,12 +15405,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -15455,6 +15455,12 @@ [0.1184, 0.1195, 0.1187, 0.1189, 0.1185, 0.1182, 0.118, 0.1176, 0.1177, 0.1173, 0.1167, 0.1169, 0.1167, 0.1167, 0.1161, 0.1159, 0.1144, 0.1137, 0.1131, 0.1115, 0.1097] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -15464,12 +15470,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -15520,6 +15520,12 @@ [0.0475, 0.0472, 0.0474, 0.0473, 0.0475, 0.0472, 0.047, 0.0469, 0.047, 0.0466, 0.0466, 0.0466, 0.0465, 0.0465, 0.0463, 0.046, 0.0455, 0.0457, 0.0455, 0.0452, 0.0452] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -15529,12 +15535,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -15585,6 +15585,12 @@ [0.0423, 0.0423, 0.0423, 0.0424, 0.0424, 0.0422, 0.0421, 0.042, 0.042, 0.0416, 0.0416, 0.0416, 0.0416, 0.0414, 0.0413, 0.0411, 0.0409, 0.0408, 0.0407, 0.0406, 0.0405] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -15594,12 +15600,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -15650,6 +15650,12 @@ [0.0917, 0.0926, 0.0936, 0.0942, 0.094, 0.0942, 0.0939, 0.0936, 0.0943, 0.0957, 0.0958, 0.0958, 0.0961, 0.0968, 0.0974, 0.0984, 0.0969, 0.0952, 0.0947, 0.0944, 0.0947] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } } } ], @@ -15659,12 +15665,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } } }, { @@ -15715,6 +15715,12 @@ [0.0433, 0.0431, 0.0432, 0.0434, 0.0433, 0.0433, 0.0431, 0.0431, 0.043, 0.0427, 0.0428, 0.0426, 0.0426, 0.0426, 0.0425, 0.0422, 0.0422, 0.042, 0.042, 0.0419, 0.0416] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -15724,12 +15730,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -15780,6 +15780,12 @@ [0.1024, 0.1016, 0.1026, 0.1041, 0.106, 0.1072, 0.1057, 0.1042, 0.105, 0.1051, 0.1055, 0.106, 0.106, 0.107, 0.1073, 0.1072, 0.1064, 0.1057, 0.1054, 0.1058, 0.1062] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } } } ], @@ -15789,12 +15795,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } } }, { @@ -15845,6 +15845,12 @@ [0.0436, 0.0435, 0.0434, 0.0437, 0.0437, 0.0435, 0.0434, 0.0434, 0.0432, 0.043, 0.043, 0.0429, 0.0429, 0.0428, 0.0424, 0.0426, 0.0422, 0.0422, 0.0421, 0.042, 0.0418] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -15854,12 +15860,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -15910,6 +15910,12 @@ [0.0946, 0.0966, 0.0986, 0.1, 0.1016, 0.1023, 0.1026, 0.1043, 0.1061, 0.1042, 0.1045, 0.1058, 0.106, 0.1056, 0.1055, 0.1062, 0.1064, 0.1059, 0.1055, 0.1048, 0.1046] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } } } ], @@ -15919,12 +15925,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } } }, { @@ -15975,6 +15975,12 @@ [0.0419, 0.0418, 0.0418, 0.042, 0.042, 0.0418, 0.0417, 0.0417, 0.0417, 0.0413, 0.0414, 0.0414, 0.0413, 0.0413, 0.0412, 0.0409, 0.0409, 0.0407, 0.0407, 0.0406, 0.0404] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -15984,12 +15990,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -16040,6 +16040,12 @@ [0.1031, 0.1045, 0.1059, 0.1072, 0.109, 0.1103, 0.1103, 0.1104, 0.1103, 0.1095, 0.1093, 0.1082, 0.1062, 0.1054, 0.1046, 0.1035, 0.1034, 0.1034, 0.1038, 0.1032, 0.1025] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } } } ], @@ -16049,12 +16055,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } } }, { @@ -16105,6 +16105,12 @@ [0.0425, 0.0424, 0.0424, 0.0426, 0.0424, 0.0423, 0.0422, 0.0422, 0.0421, 0.0418, 0.0419, 0.0417, 0.0417, 0.0417, 0.0414, 0.0414, 0.0412, 0.041, 0.041, 0.041, 0.0407] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -16114,12 +16120,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -16170,6 +16170,12 @@ [0.1093, 0.1082, 0.1061, 0.1051, 0.1066, 0.1056, 0.1044, 0.1053, 0.1057, 0.1082, 0.1078, 0.1071, 0.1059, 0.1043, 0.105, 0.1035, 0.1041, 0.1039, 0.1048, 0.104, 0.1045] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -16179,12 +16185,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -16235,6 +16235,12 @@ [0.0437, 0.0435, 0.0436, 0.0437, 0.0437, 0.0435, 0.0434, 0.0435, 0.0433, 0.0432, 0.0431, 0.0431, 0.0432, 0.0429, 0.0428, 0.0427, 0.0424, 0.0423, 0.0422, 0.0423, 0.0421] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -16244,12 +16250,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -16300,6 +16300,12 @@ [0.1045, 0.1038, 0.1036, 0.1032, 0.1032, 0.1033, 0.1023, 0.1032, 0.1046, 0.1038, 0.1019, 0.1012, 0.1022, 0.1055, 0.1073, 0.108, 0.1075, 0.1086, 0.1092, 0.109, 0.1094] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } } } ], @@ -16309,12 +16315,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 565.0, - "unit": "nm" - } } }, { @@ -16365,6 +16365,12 @@ [0.0435, 0.0434, 0.0434, 0.0436, 0.0435, 0.0434, 0.0434, 0.0432, 0.0431, 0.0429, 0.0429, 0.0428, 0.0428, 0.0427, 0.0425, 0.0424, 0.0421, 0.0421, 0.0421, 0.0419, 0.0419] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -16374,12 +16380,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -16430,6 +16430,12 @@ [0.1221, 0.1227, 0.1233, 0.124, 0.1229, 0.1223, 0.1226, 0.1227, 0.1226, 0.1222, 0.1217, 0.1219, 0.1218, 0.1217, 0.1217, 0.1219, 0.1207, 0.1199, 0.1193, 0.1183, 0.1168] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -16439,12 +16445,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -16495,6 +16495,12 @@ [0.0456, 0.0454, 0.0454, 0.0455, 0.0455, 0.0452, 0.0452, 0.045, 0.0449, 0.0446, 0.0445, 0.0444, 0.0443, 0.0443, 0.0441, 0.044, 0.0436, 0.0437, 0.0434, 0.0433, 0.0432] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -16504,12 +16510,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -16560,6 +16560,12 @@ [0.042, 0.0418, 0.0417, 0.042, 0.0419, 0.0418, 0.0417, 0.0416, 0.0415, 0.0412, 0.0412, 0.0411, 0.0411, 0.041, 0.0408, 0.0408, 0.0404, 0.0404, 0.0403, 0.0402, 0.0402] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -16569,12 +16575,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -16625,6 +16625,12 @@ [0.0426, 0.0426, 0.0426, 0.0427, 0.0426, 0.0425, 0.0424, 0.0423, 0.0423, 0.042, 0.042, 0.0418, 0.0419, 0.0417, 0.0417, 0.0415, 0.0413, 0.0412, 0.0412, 0.0412, 0.041] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -16634,12 +16640,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } } ], @@ -16649,7 +16649,7 @@ "UNC path": "tests/parsers/moldev_softmax_pro/testdata/partial_plate.txt", "file name": "partial_plate.txt", "ASM converter name": "allotropy_molecular_devices_softmax_pro", - "ASM converter version": "0.1.93", + "ASM converter version": "0.1.97", "software name": "SoftMax Pro" }, "device system document": { diff --git a/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.json b/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.json index a420910c7..c5cf64784 100644 --- a/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.json +++ b/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.json @@ -65,6 +65,12 @@ -0.0, 0.694, 3.045, 0.938, 1.029, 2.022, 1.28, 1.523, 1.04, 2.069, 0.141, 3.256, 2.308, 1.589, 0.608, 0.36, 2.82, 3.264, 2.159, 0.176, 2.844, 0.591, 3.624, 2.77, 2.065, 0.745, 0.166, 1.232, 2.332, 3.284, 0.015, 2.142, 3.22, 2.993, 1.538, 0.596, 0.105, 0.204, 3.126, 2.505, 0.46, 0.999, 3.089, 1.158] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } } } ], @@ -74,12 +80,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 544.0, - "unit": "nm" - } } }, { @@ -126,6 +126,12 @@ [2.592, 0.574, 0.177, 2.418, 2.063, 0.203, 1.681, 2.826, 2.513, 0.873, 0.053, 1.46, 1.069, 0.274, 2.872, 0.283, 1.856, 0.048, 3.191, 1.756, 2.053, 1.998, 0.035, 3.315, 0.051, 0.012, 0.255, 2.616, 0.138, 3.654, 3.715, 1.844, 1.501, 2.466, 0.177, 1.491, 0.567, 1.747, 3.169, 2.129, 1.602, 1.189, 3.629, 2.346, 2.94, 0.077, 3.526, 3.83, 1.331, 2.842, 0.649] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } } } ], @@ -135,12 +141,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 550.0, - "unit": "nm" - } } }, { @@ -187,6 +187,12 @@ [0.412, 1.808, 1.332, 3.104, 0.594, 0.538, 0.862, 2.366, 2.051, 3.948, 3.064, 2.688, 2.859, 1.157, 2.208, 3.959, 2.603, 0.096, 1.381, 3.716, 0.108, 0.878, 1.061, 0.153, 0.864, 2.369, 1.688, 0.374, 3.973, 0.485, 0.424, 1.285, 1.295, 3.004, 3.303, 0.036, 0.168, 3.361, 3.583, 0.952, 3.704, 3.381, 1.117, 2.181, 2.537, 2.501, 0.769, 1.189, 0.732, 0.118, 0.923] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -196,12 +202,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -248,6 +248,12 @@ [3.733, 3.949, 3.126, 0.54, 3.533, 0.746, 1.179, 2.239, 2.224, 2.849, 0.487, 2.392, 1.565, 3.523, 1.779, 1.392, 3.855, 1.854, 2.172, 3.79, 3.241, 0.513, 0.429, 0.011, 0.727, 3.761, 2.88, 1.616, 2.363, 1.6, 0.499, 3.642, 3.855, 3.562, 0.69, 1.335, 2.168, 2.463, 3.769, 3.289, 2.989, 1.122, 1.358, 2.102, 3.217, 0.988, 3.552, 2.657, 0.758, 1.108, 0.914] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } } } ], @@ -257,12 +263,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 520.0, - "unit": "nm" - } } }, { @@ -309,6 +309,12 @@ [3.334, 2.56, 0.327, 1.682, 3.22, 3.52, 3.115, 3.813, 3.772, 1.866, 3.563, 3.876, 0.624, 2.35, 0.844, 2.537, 2.003, 2.833, 0.444, 3.224, 1.391, 2.084, 2.882, 0.801, 2.119, 3.154, 2.326, 0.794, 3.738, 0.209, 0.222, 0.857, 1.254, 0.686, 1.165, 1.082, 3.528, 1.88, 1.469, 1.815, 3.053, 2.65, 3.997, 1.422, 3.426, 1.245, 0.734, 3.752, 2.372, 2.451, 1.548] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -318,12 +324,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -370,6 +370,12 @@ [3.824, 0.314, 1.884, 3.522, 1.249, 3.677, 3.525, 3.562, 0.066, 1.193, 2.32, 0.074, 3.563, 1.643, 2.705, 2.622, 3.938, 1.184, 3.762, 3.008, 0.123, 1.363, 2.628, 0.17, 2.741, 2.087, 1.459, 1.375, 0.874, 2.42, 2.574, 2.421, 1.287, 2.66, 0.398, 0.543, 3.37, 1.163, 3.915, 1.405, 0.002, 2.317, 1.403, 0.621, 0.732, 2.575, 0.434, 3.779, 0.72, 2.623, 0.795] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } } } ], @@ -379,12 +385,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 526.0, - "unit": "nm" - } } }, { @@ -431,6 +431,12 @@ [2.567, 2.609, 3.442, 1.424, 2.461, 1.685, 1.714, 0.781, 3.162, 2.217, 2.15, 2.688, 1.645, 2.618, 3.898, 2.786, 0.902, 1.245, 2.161, 3.251, 2.775, 1.269, 2.357, 3.006, 1.806, 3.959, 2.007, 3.437, 0.165, 1.653, 1.68, 0.654, 2.25, 1.625, 0.007, 3.812, 1.845, 1.235, 1.936, 2.858, 1.656, 0.382, 0.753, 3.187, 1.852, 3.628, 3.758, 2.003, 0.833, 3.788, 3.531] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } } } ], @@ -440,12 +446,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 570.0, - "unit": "nm" - } } }, { @@ -492,6 +492,12 @@ [2.533, 2.559, 3.371, 2.02, 1.298, 0.252, 0.436, 3.618, 2.502, 3.677, 2.276, 0.615, 1.508, 0.536, 1.495, 0.437, 0.02, 2.611, 0.086, 0.941, 3.666, 3.308, 3.303, 1.595, 2.393, 0.515, 3.169, 1.153, 2.177, 0.2, 0.004, 2.604, 0.376, 2.121, 3.146, 2.095, 2.879, 3.604, 2.708, 3.559, 1.408, 1.617, 3.434, 3.18, 3.379, 3.766, 3.244, 2.65, 0.356, 3.19, 3.738] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } } } ], @@ -501,12 +507,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 570.0, - "unit": "nm" - } } }, { @@ -553,6 +553,12 @@ [3.391, 0.746, 2.847, 3.865, 3.225, 3.256, 1.775, 3.627, 0.782, 1.083, 3.282, 1.441, 2.301, 3.673, 3.672, 0.239, 3.387, 1.39, 3.4, 1.558, 0.415, 3.902, 0.527, 3.532, 2.049, 3.873, 0.122, 2.216, 2.626, 1.27, 0.518, 0.796, 2.986, 0.462, 0.612, 1.857, 1.529, 2.256, 3.921, 2.839, 1.104, 3.977, 1.925, 2.475, 2.126, 0.175, 1.133, 3.506, 3.707, 3.526, 3.857] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 569.0, + "unit": "nm" + } } } ], @@ -562,12 +568,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 569.0, - "unit": "nm" - } } }, { @@ -614,6 +614,12 @@ [1.26, 0.956, 1.632, 3.322, 3.488, 0.219, 3.314, 1.815, 3.351, 3.133, 3.559, 1.0, 3.512, 0.564, 2.485, 2.455, 1.838, 3.061, 1.815, 2.71, 1.13, 1.468, 0.561, 0.454, 0.437, 1.976, 2.051, 1.406, 1.873, 2.74, 0.615, 2.508, 3.1, 1.412, 3.257, 3.84, 1.353, 1.139, 1.123, 1.637, 2.214, 0.44, 0.569, 3.705, 1.544, 2.977, 2.413, 1.91, 3.64, 1.72, 3.294] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } } } ], @@ -623,12 +629,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 529.0, - "unit": "nm" - } } }, { @@ -675,6 +675,12 @@ [0.445, 1.892, 0.816, 2.726, 3.792, 0.395, 1.178, 2.885, 1.512, 2.167, 1.908, 3.941, 0.611, 2.517, 1.05, 1.9, 2.099, 1.307, 2.645, 1.101, 0.699, 1.937, 0.177, 0.495, 0.69, 0.898, 0.855, 2.909, 1.46, 3.563, 0.14, 1.765, 0.153, 3.445, 0.169, 0.616, 2.283, 2.686, 3.465, 3.444, 0.175, 2.254, 3.611, 3.47, 0.306, 0.498, 3.958, 1.187, 0.494, 1.077, 0.314] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 562.0, + "unit": "nm" + } } } ], @@ -684,12 +690,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 562.0, - "unit": "nm" - } } }, { @@ -736,6 +736,12 @@ [0.603, 0.995, 0.619, 2.595, 2.508, 1.714, 0.32, 2.036, 2.893, 3.539, 2.269, 1.425, 1.948, 2.026, 0.142, 3.788, 1.166, 2.348, 0.433, 3.616, 3.413, 1.841, 3.2, 0.925, 2.445, 2.325, 0.706, 0.189, 0.191, 0.94, 3.668, 2.414, 0.382, 3.249, 3.537, 0.769, 3.534, 0.849, 1.661, 2.901, 1.962, 0.649, 0.571, 3.904, 1.905, 0.828, 1.662, 1.444, 0.163, 0.71, 2.791] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 540.0, + "unit": "nm" + } } } ], @@ -745,12 +751,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 540.0, - "unit": "nm" - } } }, { @@ -797,6 +797,12 @@ [2.839, 0.06, 1.46, 0.9, 2.762, 1.794, 3.693, 0.15, 0.182, 1.008, 0.131, 1.844, 1.953, 3.871, 3.854, 1.042, 2.699, 2.489, 3.373, 0.254, 0.316, 0.686, 1.532, 1.653, 2.763, 1.27, 3.295, 3.02, 1.616, 0.663, 3.262, 0.025, 3.481, 2.148, 0.828, 2.354, 2.921, 2.348, 0.775, 2.974, 3.84, 0.699, 1.478, 1.893, 1.831, 2.804, 2.617, 0.032, 2.051, 3.786, 2.962] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } } } ], @@ -806,12 +812,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 570.0, - "unit": "nm" - } } }, { @@ -858,6 +858,12 @@ [2.954, 0.79, 0.456, 2.475, 2.153, 2.528, 3.807, 2.137, 1.492, 2.498, 0.673, 2.534, 3.519, 1.745, 0.105, 2.363, 3.805, 3.043, 1.5, 2.121, 0.351, 1.713, 0.398, 0.413, 3.617, 3.207, 3.638, 3.822, 3.958, 2.652, 3.263, 0.968, 1.83, 1.7, 0.307, 3.235, 3.024, 3.672, 2.675, 3.825, 3.114, 0.211, 3.283, 0.476, 3.167, 2.165, 1.959, 0.147, 1.725, 0.441, 2.812] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } } } ], @@ -867,12 +873,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } } }, { @@ -919,6 +919,12 @@ [0.989, 0.55, 1.665, 2.611, 1.241, 0.391, 0.042, 2.858, 2.945, 2.889, 3.985, 2.178, 2.839, 3.235, 3.704, 0.703, 1.818, 1.438, 0.87, 3.338, 0.132, 0.367, 1.675, 3.006, 0.14, 2.43, 3.922, 1.245, 1.452, 1.247, 3.491, 2.096, 3.517, 3.84, 2.273, 0.418, 0.165, 3.089, 3.066, 2.843, 2.981, 0.814, 3.729, 0.935, 3.129, 2.032, 0.443, 1.24, 3.463, 1.461, 0.14] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } } } ], @@ -928,12 +934,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } } }, { @@ -980,6 +980,12 @@ [2.708, 0.855, 1.102, 2.679, 0.621, 2.875, 2.658, 2.47, 2.81, 0.469, 2.797, 1.405, 1.697, 3.398, 1.888, 2.661, 2.999, 0.962, 3.285, 0.538, 2.729, 2.372, 2.026, 0.356, 3.318, 0.638, 0.739, 3.877, 2.108, 1.987, 2.681, 1.782, 3.99, 1.107, 0.782, 1.241, 2.414, 1.161, 1.651, 1.542, 1.507, 0.618, 0.256, 2.373, 0.184, 3.408, 2.032, 1.537, 1.24, 3.371, 1.443] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } } } ], @@ -989,12 +995,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 551.0, - "unit": "nm" - } } }, { @@ -1041,6 +1041,12 @@ [0.278, 0.177, 0.922, 1.411, 0.336, 2.828, 0.745, 3.36, 3.983, 2.136, 2.78, 0.362, 0.822, 1.788, 1.014, 1.414, 0.59, 2.616, 0.646, 0.246, 1.838, 3.31, 1.743, 3.031, 2.11, 2.115, 3.652, 0.172, 3.909, 2.605, 3.202, 2.637, 2.737, 0.543, 2.403, 1.604, 3.068, 3.695, 0.445, 2.413, 1.669, 1.8, 1.668, 3.406, 2.726, 0.256, 3.433, 0.585, 3.169, 1.993, 1.441] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 528.0, + "unit": "nm" + } } } ], @@ -1050,12 +1056,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 528.0, - "unit": "nm" - } } }, { @@ -1102,6 +1102,12 @@ [2.921, 0.594, 3.124, 3.605, 0.967, 2.434, 1.89, 3.3, 2.22, 3.175, 0.573, 3.451, 1.377, 2.933, 0.143, 1.625, 0.279, 3.384, 3.41, 2.346, 0.894, 2.17, 2.233, 2.577, 0.038, 1.642, 2.336, 0.305, 1.854, 2.682, 3.067, 1.002, 1.915, 1.164, 0.281, 2.042, 3.612, 0.938, 1.436, 3.17, 1.177, 0.395, 2.224, 3.237, 1.095, 2.348, 0.29, 0.472, 2.583, 2.63, 3.154] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 538.0, + "unit": "nm" + } } } ], @@ -1111,12 +1117,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 538.0, - "unit": "nm" - } } }, { @@ -1163,6 +1163,12 @@ [1.201, 3.759, 3.647, 0.546, 0.75, 2.36, 0.547, 3.566, 3.325, 0.097, 1.585, 1.445, 3.538, 0.108, 3.571, 1.535, 0.213, 2.652, 2.1, 2.012, 3.34, 1.948, 0.239, 1.168, 0.499, 3.945, 2.995, 1.482, 1.689, 1.351, 1.863, 1.721, 3.224, 3.528, 1.865, 1.242, 2.267, 0.617, 3.53, 3.682, 3.065, 1.372, 2.11, 3.072, 3.591, 2.949, 2.686, 3.128, 1.523, 0.812, 0.077] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } } } ], @@ -1172,12 +1178,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 559.0, - "unit": "nm" - } } }, { @@ -1224,6 +1224,12 @@ [1.82, 0.482, 0.617, 3.813, 3.252, 3.519, 2.478, 0.047, 0.805, 3.364, 3.065, 1.876, 1.973, 2.234, 3.863, 2.221, 0.009, 2.243, 2.328, 3.268, 3.595, 3.122, 2.418, 2.947, 1.968, 3.837, 1.167, 1.576, 1.549, 1.258, 3.867, 3.958, 0.876, 1.273, 0.043, 1.239, 2.606, 3.714, 2.612, 1.723, 3.789, 0.57, 2.725, 0.317, 0.0, 3.495, 0.136, 0.837, 3.728, 0.728, 2.677] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 524.0, + "unit": "nm" + } } } ], @@ -1233,12 +1239,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 524.0, - "unit": "nm" - } } }, { @@ -1285,6 +1285,12 @@ [0.885, 3.195, 1.544, 0.482, 2.698, 2.064, 1.67, 1.845, 3.415, 2.351, 0.901, 2.497, 3.546, 3.497, 3.106, 1.0, 0.699, 2.19, 2.624, 3.615, 0.294, 3.63, 0.605, 3.478, 3.024, 0.397, 2.101, 2.947, 2.473, 3.7, 0.329, 1.848, 0.821, 2.581, 2.981, 0.763, 3.332, 0.791, 1.345, 3.175, 0.936, 1.869, 3.197, 3.371, 2.887, 2.073, 3.178, 0.819, 0.893, 2.494, 3.436] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } } } ], @@ -1294,12 +1300,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 570.0, - "unit": "nm" - } } }, { @@ -1346,6 +1346,12 @@ [2.646, 1.103, 1.112, 2.382, 1.255, 2.589, 2.065, 1.457, 2.3, 3.962, 2.722, 3.372, 3.714, 2.022, 3.053, 1.676, 0.965, 0.515, 2.343, 1.668, 3.908, 0.845, 3.449, 2.679, 2.425, 0.432, 1.234, 0.591, 0.951, 1.218, 1.281, 2.053, 3.978, 0.264, 1.682, 0.744, 3.708, 0.198, 1.726, 2.174, 1.266, 3.333, 3.044, 3.212, 2.213, 2.497, 3.483, 1.349, 3.834, 0.397, 2.213] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 562.0, + "unit": "nm" + } } } ], @@ -1355,12 +1361,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 562.0, - "unit": "nm" - } } }, { @@ -1407,6 +1407,12 @@ [0.304, 2.55, 0.826, 3.528, 1.801, 1.654, 2.433, 3.957, 0.822, 1.354, 1.474, 0.506, 1.082, 2.681, 0.669, 3.393, 3.45, 0.339, 2.308, 1.967, 0.766, 2.789, 0.169, 0.402, 0.574, 1.801, 0.236, 0.466, 3.927, 0.949, 3.885, 0.757, 0.553, 3.005, 0.977, 3.503, 3.151, 0.735, 3.881, 3.09, 1.274, 0.241, 0.903, 0.819, 3.791, 2.826, 1.962, 0.531, 1.543, 3.103, 0.033] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } } } ], @@ -1416,12 +1422,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 565.0, - "unit": "nm" - } } }, { @@ -1468,6 +1468,12 @@ [1.009, 1.525, 2.429, 1.447, 1.515, 2.38, 0.424, 2.954, 0.0, 1.417, 1.967, 0.029, 3.872, 1.468, 0.716, 3.953, 2.077, 1.703, 1.165, 0.242, 2.714, 0.457, 3.218, 0.692, 0.524, 1.885, 3.349, 0.61, 1.747, 3.839, 3.705, 2.922, 0.824, 0.916, 2.875, 3.231, 2.123, 1.557, 3.462, 1.122, 2.726, 1.781, 3.881, 1.672, 3.307, 0.211, 1.03, 3.35, 3.074, 2.873, 3.885] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } } } ], @@ -1477,12 +1483,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 550.0, - "unit": "nm" - } } }, { @@ -1529,6 +1529,12 @@ [2.827, 0.378, 2.861, 1.318, 0.551, 2.307, 1.737, 0.922, 3.63, 3.03, 3.814, 1.206, 0.161, 1.712, 3.044, 3.205, 2.956, 2.592, 1.485, 1.829, 0.519, 2.241, 0.042, 1.515, 0.932, 0.576, 1.545, 1.384, 0.312, 0.854, 3.999, 1.535, 2.873, 3.953, 0.878, 2.544, 1.963, 3.597, 2.324, 0.923, 0.386, 0.635, 3.832, 2.092, 2.912, 0.575, 3.72, 3.96, 0.262, 1.006, 2.074] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } } } ], @@ -1538,12 +1544,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 529.0, - "unit": "nm" - } } }, { @@ -1590,6 +1590,12 @@ [0.757, 1.589, 1.044, 3.365, 0.585, 0.335, 1.345, 0.386, 3.975, 0.761, 0.352, 0.61, 2.775, 3.031, 2.279, 2.332, 0.207, 0.833, 0.5, 1.242, 3.358, 0.268, 0.561, 1.442, 3.884, 2.409, 1.95, 2.603, 0.357, 0.856, 1.585, 1.122, 3.306, 2.779, 3.241, 3.946, 1.829, 0.588, 0.293, 2.208, 0.617, 3.211, 2.348, 0.161, 0.034, 0.025, 1.056, 3.06, 0.632, 2.242, 3.512] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 554.0, + "unit": "nm" + } } } ], @@ -1599,12 +1605,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 554.0, - "unit": "nm" - } } }, { @@ -1651,6 +1651,12 @@ [3.126, 3.761, 3.764, 2.715, 0.488, 1.027, 3.601, 3.481, 2.175, 2.385, 2.741, 0.028, 3.118, 3.176, 3.23, 1.303, 3.996, 3.79, 2.333, 0.503, 3.619, 0.54, 2.292, 0.624, 0.147, 1.92, 0.399, 1.408, 3.858, 1.353, 2.889, 1.97, 2.115, 1.343, 2.458, 1.36, 3.541, 0.064, 2.752, 2.918, 2.227, 1.106, 2.117, 3.822, 1.876, 3.183, 3.23, 0.985, 0.804, 2.721, 1.059] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 521.0, + "unit": "nm" + } } } ], @@ -1660,12 +1666,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 521.0, - "unit": "nm" - } } }, { @@ -1712,6 +1712,12 @@ [3.27, 2.299, 1.738, 3.893, 2.586, 1.469, 3.14, 2.568, 2.568, 0.627, 2.193, 3.622, 0.822, 3.495, 0.771, 1.912, 1.774, 0.717, 1.87, 1.762, 3.932, 1.037, 3.414, 2.276, 2.513, 2.422, 2.469, 2.747, 0.963, 2.69, 3.414, 0.603, 1.137, 0.293, 3.619, 3.67, 0.376, 1.45, 3.871, 3.89, 0.401, 1.495, 0.183, 2.29, 0.033, 1.483, 1.295, 0.327, 1.104, 1.27, 1.455] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 558.0, + "unit": "nm" + } } } ], @@ -1721,12 +1727,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 558.0, - "unit": "nm" - } } }, { @@ -1773,6 +1773,12 @@ [0.267, 2.934, 0.958, 1.127, 2.232, 2.885, 3.462, 1.38, 0.164, 2.999, 0.392, 1.604, 3.878, 1.213, 1.589, 2.485, 0.528, 3.876, 1.1, 1.535, 0.324, 0.845, 1.979, 1.36, 2.436, 0.853, 1.123, 2.242, 1.03, 1.126, 2.142, 1.642, 3.693, 1.235, 3.146, 1.669, 0.178, 3.165, 1.386, 0.785, 0.914, 0.069, 3.707, 0.891, 0.008, 3.891, 0.305, 1.077, 2.444, 2.998, 0.767] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -1782,12 +1788,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -1834,6 +1834,12 @@ [0.451, 0.004, 3.734, 1.13, 3.422, 0.955, 3.597, 2.691, 1.378, 1.761, 1.22, 0.35, 3.037, 0.857, 2.749, 1.911, 2.643, 2.067, 3.92, 2.306, 1.362, 2.489, 0.314, 0.621, 0.255, 1.138, 1.088, 1.352, 2.545, 0.548, 0.046, 3.798, 2.031, 0.359, 1.691, 1.638, 3.958, 0.104, 3.723, 0.714, 0.58, 0.474, 0.008, 3.024, 3.693, 3.719, 0.669, 0.033, 1.258, 1.979, 1.661] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 564.0, + "unit": "nm" + } } } ], @@ -1843,12 +1849,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 564.0, - "unit": "nm" - } } }, { @@ -1895,6 +1895,12 @@ [3.01, 2.524, 0.691, 3.404, 1.961, 3.689, 3.112, 0.875, 2.284, 3.866, 2.245, 0.145, 0.83, 1.714, 1.422, 2.318, 2.678, 3.165, 1.111, 1.952, 2.538, 2.343, 3.205, 1.725, 0.888, 2.481, 1.29, 0.928, 0.536, 0.468, 1.054, 0.093, 0.565, 2.886, 1.036, 1.274, 1.34, 0.954, 3.729, 1.948, 0.845, 3.229, 1.439, 0.847, 2.335, 0.328, 3.177, 1.309, 2.271, 1.4, 1.99] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } } } ], @@ -1904,12 +1910,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 529.0, - "unit": "nm" - } } }, { @@ -1956,6 +1956,12 @@ [0.868, 0.147, 0.027, 3.123, 0.667, 3.318, 2.966, 2.516, 3.48, 2.399, 2.184, 0.338, 1.815, 2.812, 2.152, 3.58, 1.943, 0.678, 0.148, 0.978, 1.723, 3.436, 3.163, 1.106, 3.308, 0.903, 2.357, 3.39, 0.559, 3.303, 3.981, 2.656, 3.135, 2.477, 0.185, 3.946, 0.538, 3.763, 0.368, 1.955, 2.373, 2.438, 0.248, 3.548, 2.661, 2.89, 3.624, 2.034, 0.182, 0.748, 1.233] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } } } ], @@ -1965,12 +1971,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 550.0, - "unit": "nm" - } } }, { @@ -2017,6 +2017,12 @@ [0.63, 2.123, 0.422, 0.266, 1.431, 0.984, 2.92, 3.814, 3.763, 0.961, 3.576, 1.956, 0.177, 2.418, 3.527, 1.203, 3.337, 2.626, 2.206, 3.041, 2.18, 0.31, 2.192, 2.604, 3.285, 3.187, 3.614, 2.445, 0.418, 1.279, 0.322, 3.207, 3.811, 2.069, 3.35, 0.533, 2.713, 2.21, 2.754, 2.961, 1.618, 3.948, 0.604, 0.994, 2.797, 0.482, 0.07, 1.13, 3.133, 1.687, 0.286] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -2026,12 +2032,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -2078,6 +2078,12 @@ [3.408, 1.976, 1.706, 3.053, 0.32, 3.93, 1.817, 0.981, 2.243, 1.369, 0.475, 3.396, 2.484, 0.638, 0.369, 2.144, 2.108, 3.067, 2.994, 2.489, 1.127, 3.872, 3.244, 1.423, 2.231, 3.705, 1.198, 3.807, 2.802, 3.116, 2.483, 3.311, 2.73, 0.993, 0.914, 1.23, 2.105, 3.016, 3.03, 0.603, 0.895, 1.229, 0.51, 1.591, 1.143, 0.552, 2.12, 0.355, 2.427, 2.337, 1.962] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } } } ], @@ -2087,12 +2093,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 548.0, - "unit": "nm" - } } }, { @@ -2139,6 +2139,12 @@ [2.062, 0.139, 3.197, 3.159, 3.535, 2.732, 0.282, 0.821, 0.615, 2.731, 2.009, 2.178, 3.127, 2.886, 1.163, 0.665, 1.491, 3.724, 3.139, 0.038, 3.091, 0.037, 2.39, 1.593, 3.898, 3.362, 1.652, 0.28, 1.679, 1.584, 0.843, 1.38, 0.464, 1.153, 0.421, 3.172, 3.532, 1.833, 1.378, 2.497, 1.823, 2.195, 2.414, 1.871, 2.886, 3.05, 1.383, 2.705, 3.979, 3.887, 0.628] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } } } ], @@ -2148,12 +2154,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 568.0, - "unit": "nm" - } } }, { @@ -2200,6 +2200,12 @@ [0.631, 3.288, 2.299, 2.871, 2.024, 1.748, 1.603, 3.261, 0.173, 1.08, 0.001, 3.142, 3.03, 1.888, 0.629, 1.714, 1.973, 2.465, 1.99, 1.132, 3.657, 2.345, 0.641, 2.215, 0.896, 1.622, 0.518, 2.707, 0.847, 1.979, 2.946, 0.3, 1.791, 0.955, 0.211, 2.091, 2.165, 2.282, 2.396, 1.423, 1.929, 2.572, 1.205, 1.417, 1.821, 3.052, 3.384, 3.983, 2.256, 1.336, 3.409] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 566.0, + "unit": "nm" + } } } ], @@ -2209,12 +2215,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 566.0, - "unit": "nm" - } } }, { @@ -2261,6 +2261,12 @@ [0.24, 1.989, 2.754, 0.971, 2.286, 2.646, 0.083, 1.974, 0.402, 1.229, 2.895, 2.413, 2.194, 2.133, 3.7, 1.35, 2.074, 1.676, 2.538, 3.548, 3.69, 0.068, 0.566, 3.203, 1.084, 1.139, 3.223, 0.393, 1.843, 2.238, 0.535, 0.451, 3.511, 2.569, 2.706, 2.311, 3.037, 3.984, 1.925, 3.444, 2.081, 0.308, 1.994, 0.194, 3.033, 0.159, 3.011, 3.284, 2.121, 1.702, 1.309] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } } } ], @@ -2270,12 +2276,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } } }, { @@ -2322,6 +2322,12 @@ [2.306, 3.718, 1.787, 3.719, 0.171, 1.423, 3.55, 3.886, 1.146, 3.423, 3.689, 0.13, 2.163, 0.694, 2.444, 2.901, 3.625, 3.426, 1.389, 2.312, 2.09, 3.751, 3.093, 1.466, 3.382, 2.074, 0.372, 0.17, 0.925, 2.128, 3.939, 2.272, 0.141, 0.929, 2.229, 0.732, 1.724, 2.849, 2.534, 0.888, 3.487, 0.098, 0.779, 0.021, 2.391, 0.177, 3.83, 3.499, 0.588, 1.258, 3.386] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } } } ], @@ -2331,12 +2337,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 536.0, - "unit": "nm" - } } }, { @@ -2383,6 +2383,12 @@ [3.857, 0.731, 3.389, 3.218, 2.555, 0.625, 0.32, 0.337, 2.096, 1.05, 3.379, 2.961, 3.017, 3.484, 1.417, 3.989, 1.233, 2.465, 1.711, 1.176, 0.775, 0.891, 0.501, 2.825, 1.992, 2.971, 3.071, 3.074, 3.204, 2.243, 0.872, 3.582, 3.666, 2.742, 0.081, 1.541, 0.751, 1.71, 3.674, 0.107, 1.403, 2.512, 0.438, 3.837, 0.107, 1.136, 1.761, 0.537, 0.974, 0.188, 2.596] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 552.0, + "unit": "nm" + } } } ], @@ -2392,12 +2398,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 552.0, - "unit": "nm" - } } }, { @@ -2444,6 +2444,12 @@ [1.034, 2.876, 0.081, 2.61, 2.966, 0.23, 0.564, 1.226, 3.583, 1.553, 1.246, 1.132, 3.852, 0.178, 3.797, 3.294, 0.275, 3.403, 3.876, 3.237, 3.523, 2.791, 1.604, 3.773, 2.262, 0.453, 0.663, 2.717, 0.855, 1.21, 2.534, 2.099, 3.016, 3.646, 3.837, 0.705, 3.584, 0.131, 1.114, 1.31, 0.187, 0.483, 0.09, 2.554, 0.157, 1.38, 0.585, 3.659, 0.309, 1.841, 1.485] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } } } ], @@ -2453,12 +2459,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } } }, { @@ -2505,6 +2505,12 @@ [1.134, 1.098, 0.951, 3.073, 2.243, 1.272, 0.308, 0.348, 2.512, 3.566, 1.846, 0.37, 2.373, 3.018, 3.146, 2.115, 0.206, 0.34, 3.092, 3.709, 0.144, 2.288, 2.565, 3.049, 3.039, 2.7, 3.049, 3.615, 0.882, 3.868, 1.004, 2.408, 3.013, 3.724, 1.4, 1.001, 2.065, 0.573, 1.593, 3.432, 3.276, 3.783, 2.602, 1.743, 2.34, 0.112, 1.717, 3.535, 1.011, 3.264, 0.379] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 560.0, + "unit": "nm" + } } } ], @@ -2514,12 +2520,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 560.0, - "unit": "nm" - } } }, { @@ -2566,6 +2566,12 @@ [3.318, 1.217, 2.132, 1.34, 2.846, 2.533, 1.901, 0.033, 3.543, 2.223, 0.692, 3.465, 2.644, 2.562, 3.438, 1.357, 2.648, 1.618, 2.145, 0.05, 3.632, 2.747, 3.659, 0.433, 0.361, 3.686, 0.821, 0.708, 2.927, 0.982, 3.514, 2.604, 1.617, 3.488, 1.686, 1.19, 0.881, 2.383, 2.554, 2.467, 0.163, 0.54, 2.05, 1.209, 2.583, 0.317, 3.957, 3.181, 2.902, 2.755, 3.069] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -2575,12 +2581,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -2627,6 +2627,12 @@ [1.916, 2.865, 3.214, 0.746, 0.57, 1.557, 1.698, 0.979, 3.159, 1.711, 1.193, 1.106, 2.56, 2.708, 2.087, 1.847, 3.155, 0.875, 2.247, 0.475, 0.264, 3.064, 3.677, 3.887, 3.092, 0.697, 2.45, 1.85, 0.044, 3.728, 1.64, 1.806, 0.171, 1.913, 1.597, 3.738, 2.403, 2.742, 1.115, 3.633, 3.183, 1.404, 3.394, 0.756, 2.97, 3.433, 3.489, 2.5, 0.495, 2.469, 0.802] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -2636,12 +2642,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -2688,6 +2688,12 @@ [2.305, 0.655, 2.279, 2.804, 2.851, 3.188, 3.326, 1.654, 3.873, 3.106, 3.848, 0.934, 3.431, 0.071, 3.387, 0.934, 0.647, 1.11, 2.348, 3.444, 0.413, 3.76, 2.613, 1.292, 2.859, 3.67, 2.92, 0.917, 3.658, 1.208, 3.949, 1.354, 1.574, 2.926, 3.334, 1.15, 1.891, 3.108, 2.745, 0.55, 3.076, 1.087, 1.242, 0.526, 3.334, 0.469, 3.962, 0.685, 3.582, 2.498, 2.841] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } } } ], @@ -2697,12 +2703,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 529.0, - "unit": "nm" - } } }, { @@ -2749,6 +2749,12 @@ [1.389, 2.146, 3.025, 0.388, 2.545, 2.041, 0.987, 3.944, 3.181, 0.267, 2.409, 1.995, 2.665, 3.157, 2.493, 3.359, 0.505, 0.736, 2.236, 3.043, 1.538, 2.365, 1.798, 0.367, 3.325, 2.517, 2.087, 1.957, 2.389, 3.707, 2.235, 1.334, 1.16, 2.366, 2.56, 3.208, 2.549, 2.537, 0.788, 3.109, 0.904, 3.163, 3.564, 0.282, 0.667, 3.092, 2.576, 1.369, 0.841, 1.11, 3.457] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } } } ], @@ -2758,12 +2764,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 570.0, - "unit": "nm" - } } }, { @@ -2810,6 +2810,12 @@ [3.948, 1.346, 3.455, 1.302, 3.024, 0.347, 2.657, 1.063, 0.027, 3.954, 3.03, 1.554, 3.474, 2.032, 1.075, 0.835, 0.298, 0.597, 3.285, 0.81, 1.967, 3.947, 3.126, 2.139, 2.375, 2.801, 1.516, 3.7, 0.233, 3.941, 0.717, 1.115, 1.279, 0.25, 2.286, 3.987, 1.704, 1.063, 3.535, 2.86, 3.892, 1.474, 0.761, 3.155, 1.874, 1.608, 0.089, 2.25, 3.591, 2.256, 2.277] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } } } ], @@ -2819,12 +2825,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 559.0, - "unit": "nm" - } } }, { @@ -2871,6 +2871,12 @@ [0.772, 1.556, 0.299, 1.489, 0.0, 2.22, 1.316, 2.927, 0.223, 2.831, 2.956, 0.829, 0.086, 3.236, 1.914, 0.275, 3.224, 3.745, 1.088, 3.13, 3.235, 1.061, 0.424, 0.917, 0.493, 3.186, 3.97, 0.264, 0.766, 2.711, 3.265, 0.109, 1.976, 1.663, 3.944, 3.559, 0.979, 2.76, 2.285, 1.767, 0.388, 2.135, 3.312, 0.028, 0.935, 0.644, 0.674, 3.919, 3.96, 1.333, 0.865] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } } } ], @@ -2880,12 +2886,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 568.0, - "unit": "nm" - } } }, { @@ -2932,6 +2932,12 @@ [2.504, 2.503, 3.126, 3.042, 3.711, 1.131, 3.382, 0.996, 0.814, 2.249, 1.051, 2.161, 1.512, 3.566, 2.847, 2.853, 2.423, 3.292, 2.354, 3.295, 0.463, 1.459, 3.32, 2.741, 1.099, 1.749, 0.396, 3.982, 3.848, 2.511, 0.051, 0.304, 3.432, 1.845, 0.761, 1.605, 2.849, 2.62, 0.233, 2.428, 1.597, 1.763, 1.471, 3.517, 3.337, 3.974, 1.799, 0.462, 2.087, 1.791, 2.251] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } } } ], @@ -2941,12 +2947,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 548.0, - "unit": "nm" - } } }, { @@ -2993,6 +2993,12 @@ [0.627, 1.605, 2.038, 0.401, 1.044, 3.182, 0.384, 1.943, 1.961, 0.734, 3.399, 1.148, 2.302, 2.197, 0.746, 2.729, 3.667, 2.804, 1.241, 0.003, 3.802, 3.058, 3.926, 1.697, 2.7, 3.988, 3.803, 3.404, 1.124, 3.949, 3.934, 1.894, 2.056, 0.26, 3.424, 2.699, 1.394, 1.443, 3.716, 2.423, 2.465, 0.677, 2.271, 1.693, 2.197, 0.614, 3.168, 1.319, 2.59, 1.245, 2.132] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 546.0, + "unit": "nm" + } } } ], @@ -3002,12 +3008,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 546.0, - "unit": "nm" - } } }, { @@ -3054,6 +3054,12 @@ [1.657, 0.845, 1.788, 2.449, 1.568, 1.679, 0.34, 1.701, 1.056, 3.379, 0.979, 0.818, 2.011, 0.8, 1.505, 3.092, 2.042, 2.773, 2.047, 1.334, 2.223, 3.088, 2.818, 1.538, 3.125, 0.786, 2.232, 3.499, 2.086, 0.819, 2.483, 0.814, 3.879, 1.817, 2.276, 1.048, 0.267, 1.81, 1.856, 1.019, 1.053, 3.742, 2.659, 3.044, 1.485, 3.858, 0.259, 0.893, 0.692, 1.522, 1.125] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 562.0, + "unit": "nm" + } } } ], @@ -3063,12 +3069,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 562.0, - "unit": "nm" - } } }, { @@ -3115,6 +3115,12 @@ [2.546, 0.543, 3.91, 3.909, 2.568, 2.027, 0.25, 3.323, 0.781, 3.447, 0.841, 3.614, 0.236, 0.895, 0.165, 0.938, 0.194, 2.523, 0.456, 2.824, 0.231, 0.916, 1.027, 0.281, 2.481, 0.428, 3.774, 0.052, 3.266, 0.526, 1.338, 2.806, 0.563, 3.693, 3.936, 0.27, 3.969, 1.908, 3.707, 3.021, 0.017, 2.486, 1.074, 1.572, 0.212, 0.127, 2.422, 2.148, 1.32, 2.92, 0.065] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 523.0, + "unit": "nm" + } } } ], @@ -3124,12 +3130,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 523.0, - "unit": "nm" - } } }, { @@ -3176,6 +3176,12 @@ [2.37, 0.236, 2.697, 0.893, 1.63, 3.515, 3.628, 1.427, 2.14, 2.252, 0.197, 0.057, 0.254, 2.108, 2.034, 3.051, 0.543, 0.959, 3.894, 0.969, 2.286, 2.815, 1.434, 2.806, 1.744, 3.842, 3.455, 0.069, 2.354, 2.005, 1.626, 2.732, 0.346, 0.461, 2.968, 2.57, 1.866, 2.799, 2.306, 0.755, 0.34, 0.48, 1.567, 0.768, 3.819, 2.429, 0.819, 3.463, 2.177, 1.076, 1.879] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } } } ], @@ -3185,12 +3191,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } } }, { @@ -3237,6 +3237,12 @@ [1.188, 1.425, 1.95, 1.778, 3.554, 2.802, 3.891, 3.149, 1.787, 0.06, 3.559, 3.073, 0.134, 0.626, 1.465, 3.71, 3.793, 3.14, 3.463, 1.184, 1.743, 2.652, 3.139, 0.628, 1.806, 1.247, 0.665, 2.987, 3.315, 3.022, 3.991, 1.891, 1.278, 0.125, 0.437, 1.306, 2.395, 2.683, 3.413, 3.768, 1.975, 3.65, 0.518, 0.694, 0.781, 1.407, 1.432, 0.142, 2.353, 2.718, 1.026] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } } } ], @@ -3246,12 +3252,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 536.0, - "unit": "nm" - } } }, { @@ -3298,6 +3298,12 @@ [0.323, 2.713, 3.891, 0.136, 2.535, 2.286, 1.321, 3.971, 2.307, 2.136, 0.903, 3.833, 2.765, 0.069, 1.667, 1.795, 0.009, 0.189, 0.159, 1.315, 1.109, 3.726, 3.695, 3.209, 2.092, 2.134, 2.444, 3.847, 0.399, 3.814, 0.523, 0.633, 0.596, 1.995, 3.668, 3.177, 1.386, 3.989, 1.901, 3.02, 1.073, 2.711, 1.106, 1.631, 1.071, 3.817, 1.753, 0.625, 3.114, 3.611, 1.423] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } } } ], @@ -3307,12 +3313,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 542.0, - "unit": "nm" - } } }, { @@ -3359,6 +3359,12 @@ [3.952, 2.194, 1.403, 3.917, 0.597, 3.018, 0.681, 2.044, 0.401, 3.841, 1.474, 3.572, 2.492, 1.612, 0.27, 3.236, 0.769, 0.401, 2.489, 0.408, 0.02, 2.288, 1.139, 0.241, 2.397, 2.619, 2.064, 2.138, 2.275, 0.381, 1.819, 0.732, 0.787, 2.391, 0.571, 2.438, 3.193, 2.078, 3.07, 0.159, 0.705, 1.944, 1.499, 3.178, 3.599, 3.139, 2.614, 0.018, 0.8, 0.58, 0.983] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 564.0, + "unit": "nm" + } } } ], @@ -3368,12 +3374,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 564.0, - "unit": "nm" - } } }, { @@ -3420,6 +3420,12 @@ [0.224, 0.624, 3.203, 1.403, 1.664, 1.055, 1.161, 1.519, 1.977, 0.953, 2.542, 3.768, 0.02, 2.022, 0.741, 2.784, 0.101, 1.041, 1.832, 0.043, 2.691, 1.33, 2.329, 3.702, 2.075, 0.788, 1.96, 0.642, 3.258, 0.005, 2.045, 1.337, 1.695, 3.397, 1.594, 0.108, 1.584, 0.987, 2.906, 1.382, 2.031, 0.558, 1.093, 3.205, 2.162, 2.176, 1.479, 1.155, 2.857, 0.354, 2.513] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -3429,12 +3435,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -3481,6 +3481,12 @@ [2.976, 2.968, 0.537, 2.292, 2.894, 2.295, 3.5, 3.328, 0.875, 3.094, 0.519, 2.261, 1.972, 2.908, 1.204, 2.073, 0.622, 0.427, 0.633, 1.2, 3.113, 2.134, 0.449, 2.011, 2.132, 0.236, 3.123, 1.54, 3.898, 3.308, 0.804, 1.785, 2.903, 1.491, 3.068, 2.369, 1.157, 1.105, 2.7, 1.812, 2.084, 1.658, 2.031, 2.288, 1.512, 2.297, 3.121, 0.297, 0.957, 0.102, 0.857] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } } } ], @@ -3490,12 +3496,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 526.0, - "unit": "nm" - } } }, { @@ -3542,6 +3542,12 @@ [0.728, 2.223, 3.154, 3.399, 0.841, 2.519, 2.525, 0.159, 2.657, 3.171, 1.96, 3.429, 1.566, 2.29, 2.734, 3.357, 0.48, 3.839, 2.835, 0.915, 3.516, 1.726, 2.821, 3.116, 1.454, 0.103, 2.161, 0.499, 3.834, 1.115, 2.826, 0.582, 3.796, 2.451, 0.076, 3.562, 3.749, 2.092, 2.226, 3.849, 2.632, 0.946, 0.043, 2.641, 0.124, 2.228, 0.464, 3.997, 2.778, 2.94, 2.641] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 556.0, + "unit": "nm" + } } } ], @@ -3551,12 +3557,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 556.0, - "unit": "nm" - } } }, { @@ -3603,6 +3603,12 @@ [0.457, 2.122, 3.186, 1.34, 3.001, 3.402, 0.038, 1.944, 0.738, 0.358, 2.025, 0.324, 1.541, 0.344, 1.377, 3.633, 3.114, 2.213, 3.171, 3.607, 2.388, 1.612, 2.985, 2.283, 2.57, 1.683, 0.179, 2.992, 3.226, 3.638, 2.163, 1.721, 0.894, 2.474, 2.369, 2.46, 0.609, 1.111, 1.074, 0.16, 3.711, 0.147, 1.488, 3.491, 0.606, 0.621, 2.501, 2.296, 2.746, 2.595, 1.349] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } } } ], @@ -3612,12 +3618,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 548.0, - "unit": "nm" - } } }, { @@ -3664,6 +3664,12 @@ [1.784, 3.606, 3.332, 0.253, 2.844, 3.136, 0.903, 2.769, 1.318, 3.222, 1.046, 2.718, 1.099, 2.195, 0.304, 3.43, 3.067, 1.975, 2.917, 3.024, 2.003, 1.139, 3.011, 3.896, 2.24, 0.124, 3.494, 1.676, 1.949, 3.181, 1.882, 0.245, 0.63, 2.289, 0.379, 2.115, 1.561, 2.221, 3.524, 3.323, 3.705, 2.341, 3.755, 0.937, 2.664, 1.428, 0.389, 1.296, 0.301, 1.19, 3.434] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } } } ], @@ -3673,12 +3679,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 559.0, - "unit": "nm" - } } }, { @@ -3725,6 +3725,12 @@ [0.321, 3.828, 3.57, 3.346, 0.644, 0.594, 3.435, 2.012, 2.72, 3.641, 3.226, 0.82, 2.136, 1.339, 0.8, 2.087, 2.81, 1.815, 2.189, 1.869, 0.846, 2.451, 3.593, 3.318, 3.662, 1.383, 2.074, 1.232, 0.812, 3.734, 2.198, 1.374, 0.759, 3.747, 1.561, 0.417, 1.06, 2.942, 3.734, 1.521, 2.125, 0.208, 0.803, 3.682, 0.479, 1.52, 1.618, 3.597, 1.864, 3.34, 1.579] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 522.0, + "unit": "nm" + } } } ], @@ -3734,12 +3740,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 522.0, - "unit": "nm" - } } }, { @@ -3786,6 +3786,12 @@ [3.48, 2.112, 3.32, 2.587, 1.869, 0.234, 0.252, 3.684, 3.26, 2.519, 2.203, 1.199, 2.985, 1.443, 1.851, 0.061, 2.389, 3.778, 0.383, 1.027, 3.867, 2.081, 0.667, 3.744, 0.637, 1.647, 3.911, 2.838, 2.141, 3.765, 2.476, 3.368, 1.471, 2.155, 2.717, 3.261, 1.438, 1.159, 3.691, 0.182, 0.807, 3.258, 0.473, 3.001, 3.921, 3.008, 1.818, 2.238, 2.627, 1.458, 3.229] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 564.0, + "unit": "nm" + } } } ], @@ -3795,12 +3801,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 564.0, - "unit": "nm" - } } }, { @@ -3847,6 +3847,12 @@ [3.819, 1.48, 2.312, 1.711, 1.399, 1.445, 3.576, 1.95, 0.222, 0.323, 1.413, 1.542, 3.495, 0.042, 2.835, 3.728, 0.83, 2.726, 2.589, 2.623, 1.229, 0.086, 0.201, 0.22, 0.608, 1.607, 1.666, 3.822, 1.628, 3.829, 1.672, 0.211, 0.682, 0.535, 2.657, 1.887, 3.159, 0.444, 1.318, 1.816, 1.861, 3.209, 3.468, 3.858, 3.393, 1.716, 0.977, 2.958, 1.086, 3.28, 0.987] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } } } ], @@ -3856,12 +3862,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } } }, { @@ -3908,6 +3908,12 @@ [3.512, 0.037, 2.835, 1.999, 3.732, 1.279, 2.092, 1.102, 3.791, 3.778, 3.754, 0.322, 0.393, 2.65, 1.202, 0.86, 2.959, 1.385, 0.948, 0.568, 0.386, 1.407, 0.773, 0.761, 2.02, 0.617, 0.342, 0.826, 2.892, 0.63, 2.707, 2.736, 2.347, 2.841, 2.16, 0.173, 1.846, 2.536, 2.924, 0.608, 1.067, 3.341, 1.527, 2.037, 2.107, 2.886, 3.075, 1.208, 2.191, 0.856, 2.018] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } } } ], @@ -3917,12 +3923,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 529.0, - "unit": "nm" - } } }, { @@ -3969,6 +3969,12 @@ [1.573, 0.137, 2.712, 0.601, 2.105, 3.264, 2.073, 3.978, 3.115, 0.936, 1.265, 2.21, 3.161, 1.071, 1.018, 1.974, 1.552, 0.49, 1.028, 3.013, 0.423, 2.461, 0.34, 3.501, 1.044, 3.88, 2.735, 2.654, 3.133, 1.541, 3.134, 2.635, 2.036, 2.611, 1.133, 2.598, 3.635, 2.239, 0.055, 0.909, 3.772, 2.557, 3.808, 3.671, 3.802, 1.131, 2.366, 0.966, 1.089, 0.912, 1.523] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } } } ], @@ -3978,12 +3984,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } } }, { @@ -4030,6 +4030,12 @@ [0.718, 1.162, 1.843, 1.594, 3.112, 3.797, 3.21, 3.557, 2.224, 0.529, 3.419, 0.844, 1.573, 1.802, 2.629, 0.173, 0.549, 3.938, 2.419, 2.339, 3.312, 0.434, 0.119, 3.24, 1.865, 2.652, 0.668, 3.699, 3.913, 1.513, 1.769, 1.564, 2.221, 0.018, 2.416, 1.473, 0.193, 1.017, 2.021, 2.8, 0.424, 2.682, 1.83, 0.379, 0.353, 1.712, 2.235, 1.868, 1.173, 0.957, 1.817] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } } } ], @@ -4039,12 +4045,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 526.0, - "unit": "nm" - } } }, { @@ -4091,6 +4091,12 @@ [1.027, 2.669, 2.572, 2.21, 0.283, 1.042, 2.602, 3.728, 0.459, 3.129, 3.511, 3.643, 0.711, 2.76, 1.855, 2.623, 1.554, 3.386, 1.155, 3.979, 3.531, 1.916, 3.619, 1.914, 0.63, 2.604, 3.739, 2.886, 0.153, 0.416, 2.799, 2.525, 2.955, 3.696, 0.741, 2.895, 3.648, 1.807, 2.133, 0.43, 1.59, 1.288, 1.561, 3.671, 0.912, 3.038, 1.119, 1.619, 2.497, 3.089, 0.68] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 530.0, + "unit": "nm" + } } } ], @@ -4100,12 +4106,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 530.0, - "unit": "nm" - } } }, { @@ -4152,6 +4152,12 @@ [2.482, 0.017, 0.978, 2.285, 3.111, 3.05, 0.658, 1.58, 1.678, 1.303, 3.716, 3.575, 0.043, 0.329, 0.985, 0.688, 1.014, 2.018, 2.96, 2.974, 3.747, 1.253, 0.725, 2.389, 2.242, 0.355, 3.948, 1.002, 1.592, 1.485, 2.12, 0.388, 1.063, 3.736, 0.316, 2.508, 1.977, 1.411, 1.63, 3.844, 2.99, 0.227, 0.454, 3.127, 1.874, 1.713, 1.518, 3.341, 3.926, 2.349, 0.104] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } } } ], @@ -4161,12 +4167,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 568.0, - "unit": "nm" - } } }, { @@ -4213,6 +4213,12 @@ [3.6, 3.537, 0.115, 0.933, 1.229, 3.291, 2.589, 0.042, 2.756, 3.101, 3.655, 3.987, 0.193, 3.183, 3.327, 2.511, 0.306, 0.012, 2.476, 2.711, 3.603, 0.388, 3.115, 3.983, 3.519, 0.798, 1.598, 0.514, 0.529, 2.836, 0.606, 1.075, 3.242, 1.38, 2.519, 0.851, 0.948, 2.803, 3.087, 3.217, 3.388, 1.368, 2.873, 0.742, 3.335, 0.239, 0.261, 3.944, 2.547, 3.201, 1.211] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -4222,12 +4228,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -4274,6 +4274,12 @@ [3.328, 1.449, 3.638, 0.501, 3.211, 0.422, 0.131, 1.413, 0.431, 1.693, 2.074, 3.513, 3.919, 2.495, 2.58, 0.745, 2.813, 0.663, 2.475, 1.562, 1.503, 0.925, 3.259, 3.323, 2.234, 1.514, 2.372, 0.648, 3.28, 0.537, 1.654, 1.966, 1.327, 1.625, 1.278, 3.625, 3.603, 0.878, 3.307, 0.428, 0.817, 1.389, 2.656, 1.524, 1.313, 1.855, 2.954, 2.247, 0.754, 3.494, 1.448] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -4283,12 +4289,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -4335,6 +4335,12 @@ [3.28, 0.071, 1.639, 3.708, 2.403, 2.19, 0.315, 2.266, 1.696, 2.05, 3.482, 2.133, 3.893, 0.038, 0.107, 2.185, 2.294, 1.217, 2.954, 1.141, 1.934, 1.355, 2.047, 0.745, 0.113, 2.269, 1.735, 2.009, 0.379, 2.56, 0.124, 3.893, 3.785, 3.088, 2.374, 1.895, 3.688, 1.916, 2.874, 1.435, 3.288, 2.612, 1.61, 2.378, 1.334, 3.256, 2.762, 1.485, 1.205, 3.669, 0.66] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 552.0, + "unit": "nm" + } } } ], @@ -4344,12 +4350,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 552.0, - "unit": "nm" - } } }, { @@ -4396,6 +4396,12 @@ [1.03, 1.799, 2.352, 3.514, 1.924, 2.023, 0.894, 3.594, 0.133, 0.454, 2.305, 1.887, 3.136, 1.925, 3.589, 2.347, 0.804, 1.664, 2.212, 2.497, 0.377, 2.342, 1.519, 1.853, 3.322, 3.745, 3.669, 3.41, 0.857, 3.507, 0.249, 0.804, 0.709, 1.899, 3.094, 2.094, 1.433, 3.574, 0.449, 3.871, 2.794, 2.322, 2.741, 0.98, 0.982, 0.724, 2.474, 0.452, 1.745, 0.908, 1.957] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 546.0, + "unit": "nm" + } } } ], @@ -4405,12 +4411,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 546.0, - "unit": "nm" - } } }, { @@ -4457,6 +4457,12 @@ [3.82, 2.993, 1.172, 0.283, 2.688, 0.28, 0.498, 0.191, 2.179, 2.354, 1.483, 2.736, 0.626, 0.205, 1.501, 1.177, 1.236, 2.831, 1.494, 0.913, 1.23, 1.214, 2.34, 3.702, 2.054, 3.601, 0.539, 0.871, 2.597, 1.27, 3.217, 1.665, 3.948, 1.549, 0.428, 1.811, 3.536, 1.616, 0.405, 1.814, 0.934, 3.383, 2.27, 1.517, 1.311, 3.586, 2.114, 0.775, 3.481, 3.547, 1.237] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } } } ], @@ -4466,12 +4472,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 520.0, - "unit": "nm" - } } }, { @@ -4518,6 +4518,12 @@ [1.62, 0.25, 3.994, 0.727, 2.605, 0.652, 1.469, 2.229, 3.087, 3.74, 3.627, 1.594, 0.908, 3.137, 3.817, 2.787, 3.076, 3.776, 3.69, 1.64, 3.62, 2.425, 3.68, 3.979, 1.846, 2.944, 0.823, 2.391, 2.468, 1.486, 3.763, 1.389, 3.05, 0.033, 1.596, 1.415, 3.953, 0.822, 1.823, 1.158, 2.067, 3.387, 1.318, 2.073, 1.306, 1.788, 1.362, 2.379, 1.493, 0.798, 3.038] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } } } ], @@ -4527,12 +4533,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 529.0, - "unit": "nm" - } } }, { @@ -4579,6 +4579,12 @@ [0.999, 3.791, 1.906, 1.616, 3.195, 0.569, 0.015, 2.88, 3.661, 3.828, 3.077, 3.761, 1.6, 3.976, 2.237, 2.544, 0.875, 1.541, 2.402, 2.834, 2.253, 1.952, 2.531, 3.573, 0.233, 1.106, 1.607, 2.672, 0.058, 1.582, 2.444, 0.898, 1.669, 2.448, 2.764, 1.598, 1.143, 2.416, 2.401, 0.845, 3.938, 1.942, 2.161, 1.33, 2.989, 3.626, 3.718, 2.096, 3.068, 3.243, 0.486] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 528.0, + "unit": "nm" + } } } ], @@ -4588,12 +4594,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 528.0, - "unit": "nm" - } } }, { @@ -4640,6 +4640,12 @@ [0.838, 3.09, 1.964, 0.784, 3.046, 1.259, 2.332, 1.383, 2.088, 2.962, 1.342, 2.821, 2.078, 1.384, 2.179, 2.091, 3.151, 1.212, 0.638, 1.4, 2.458, 3.139, 1.557, 2.895, 0.311, 3.791, 1.2, 0.584, 0.607, 1.388, 3.511, 3.604, 0.814, 1.095, 1.605, 1.807, 3.705, 1.664, 3.718, 0.339, 2.811, 1.033, 0.312, 1.883, 2.595, 3.12, 0.082, 3.945, 0.809, 1.534, 0.566] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } } } ], @@ -4649,12 +4655,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 550.0, - "unit": "nm" - } } }, { @@ -4701,6 +4701,12 @@ [0.883, 2.429, 1.843, 2.028, 1.698, 1.533, 3.068, 0.473, 3.255, 0.059, 1.748, 0.776, 0.699, 3.451, 1.738, 2.007, 0.983, 3.779, 0.371, 2.386, 1.487, 1.494, 0.299, 2.589, 1.425, 2.826, 3.674, 0.3, 1.19, 3.708, 1.254, 3.774, 3.072, 0.822, 2.627, 1.174, 2.971, 3.067, 3.906, 0.273, 0.636, 1.191, 0.463, 0.28, 1.063, 0.257, 3.613, 2.431, 0.857, 1.113, 3.099] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } } } ], @@ -4710,12 +4716,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } } }, { @@ -4762,6 +4762,12 @@ [0.166, 0.437, 3.148, 3.078, 3.389, 2.129, 3.254, 0.602, 2.872, 1.859, 2.768, 3.282, 3.546, 2.804, 1.973, 1.703, 3.877, 0.824, 0.563, 3.035, 1.916, 3.872, 0.098, 1.749, 0.296, 1.03, 0.019, 1.525, 1.168, 3.213, 1.242, 3.442, 0.076, 0.609, 1.088, 3.336, 3.923, 1.743, 3.237, 3.044, 3.717, 2.464, 1.034, 2.414, 1.868, 1.908, 0.916, 1.475, 3.089, 2.553, 3.736] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } } } ], @@ -4771,12 +4777,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 570.0, - "unit": "nm" - } } }, { @@ -4823,6 +4823,12 @@ [1.607, 0.293, 2.077, 1.183, 0.293, 0.339, 1.399, 2.781, 2.358, 2.11, 1.728, 3.434, 3.658, 0.617, 3.326, 3.205, 2.937, 1.715, 2.636, 1.779, 2.133, 1.586, 1.519, 3.318, 3.451, 2.838, 1.683, 3.881, 2.388, 0.114, 2.543, 2.436, 2.615, 3.477, 3.634, 3.148, 1.999, 3.426, 0.794, 2.996, 2.524, 2.961, 0.878, 0.934, 1.988, 3.03, 1.375, 1.797, 2.542, 2.702, 1.979] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 554.0, + "unit": "nm" + } } } ], @@ -4832,12 +4838,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 554.0, - "unit": "nm" - } } }, { @@ -4884,6 +4884,12 @@ [3.76, 0.453, 0.773, 1.602, 0.02, 2.774, 2.758, 1.731, 1.455, 2.655, 1.517, 0.393, 2.244, 3.566, 3.292, 0.818, 0.181, 0.982, 0.177, 1.206, 3.511, 0.921, 3.639, 3.254, 3.171, 0.708, 0.584, 1.329, 0.42, 1.462, 3.886, 1.339, 3.685, 2.134, 2.783, 1.982, 1.841, 1.874, 3.613, 0.374, 3.24, 1.694, 3.338, 0.34, 1.006, 2.567, 2.633, 1.368, 2.696, 2.211, 1.194] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -4893,12 +4899,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -4945,6 +4945,12 @@ [0.814, 2.365, 1.495, 2.468, 2.838, 0.813, 1.518, 2.43, 3.312, 2.189, 1.428, 1.311, 3.993, 2.769, 0.178, 0.708, 0.11, 0.782, 1.309, 2.977, 2.306, 1.368, 3.802, 1.966, 1.816, 1.582, 3.298, 2.248, 0.603, 2.075, 3.216, 2.633, 2.208, 0.267, 3.072, 2.974, 2.189, 3.665, 3.945, 1.169, 0.322, 3.444, 0.301, 2.184, 1.811, 0.382, 3.345, 1.571, 0.828, 1.859, 2.523] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } } } ], @@ -4954,12 +4960,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } } }, { @@ -5006,6 +5006,12 @@ [0.586, 1.387, 3.234, 2.888, 3.445, 2.562, 3.529, 0.651, 1.256, 1.514, 3.27, 1.826, 1.237, 2.973, 2.795, 3.102, 3.725, 3.696, 1.204, 2.519, 0.444, 0.837, 0.14, 2.655, 2.862, 1.067, 1.617, 0.154, 1.434, 2.237, 1.727, 1.42, 2.744, 3.552, 2.63, 1.245, 2.974, 1.379, 3.626, 0.411, 2.659, 3.014, 2.689, 3.654, 1.051, 1.617, 3.063, 3.211, 3.015, 1.28, 3.619] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } } } ], @@ -5015,12 +5021,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 536.0, - "unit": "nm" - } } }, { @@ -5067,6 +5067,12 @@ [1.874, 3.623, 3.34, 2.078, 3.748, 1.247, 0.578, 0.026, 2.377, 0.944, 3.374, 3.217, 3.018, 3.787, 1.85, 3.082, 1.685, 0.342, 1.549, 0.127, 2.346, 0.07, 0.793, 3.859, 1.43, 2.148, 0.485, 1.603, 1.245, 2.003, 2.406, 1.139, 0.154, 2.617, 3.852, 1.796, 3.404, 1.473, 2.881, 3.998, 2.395, 1.352, 1.249, 3.467, 3.285, 3.796, 3.67, 3.867, 3.2, 2.534, 1.378] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 566.0, + "unit": "nm" + } } } ], @@ -5076,12 +5082,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 566.0, - "unit": "nm" - } } }, { @@ -5128,6 +5128,12 @@ [2.868, 1.465, 1.152, 1.273, 1.804, 2.83, 3.481, 0.648, 1.6, 0.762, 2.975, 2.781, 0.373, 2.538, 2.235, 3.063, 0.4, 3.935, 0.053, 3.678, 0.211, 1.461, 1.551, 1.731, 0.993, 2.82, 1.325, 0.574, 1.633, 2.477, 0.617, 2.402, 2.71, 0.625, 3.537, 3.673, 3.001, 1.344, 2.047, 2.966, 3.923, 0.825, 1.28, 3.236, 3.42, 2.571, 0.875, 0.928, 1.049, 0.733, 3.269] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } } } ], @@ -5137,12 +5143,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } } }, { @@ -5189,6 +5189,12 @@ [3.932, 3.146, 2.856, 1.167, 1.407, 3.914, 3.42, 0.279, 2.983, 1.504, 2.906, 3.014, 3.122, 0.144, 0.572, 0.07, 3.748, 3.0, 2.562, 0.061, 3.055, 1.887, 1.087, 3.755, 3.386, 0.18, 2.315, 2.311, 2.421, 1.945, 0.397, 3.524, 0.899, 3.208, 0.685, 3.255, 3.854, 3.457, 2.13, 3.758, 3.58, 1.065, 3.063, 1.462, 1.016, 1.81, 2.158, 3.092, 2.847, 2.501, 1.126] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } } } ], @@ -5198,12 +5204,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 520.0, - "unit": "nm" - } } }, { @@ -5250,6 +5250,12 @@ [1.927, 2.487, 0.671, 0.213, 2.044, 2.059, 3.1, 1.78, 1.226, 1.599, 1.109, 1.857, 1.038, 1.106, 3.382, 2.114, 3.914, 3.458, 1.317, 0.216, 0.291, 0.87, 2.803, 0.481, 1.99, 2.823, 3.624, 2.739, 1.576, 2.022, 3.223, 3.463, 3.92, 0.819, 2.469, 1.037, 0.228, 2.994, 2.641, 1.196, 0.753, 1.677, 0.903, 2.159, 2.47, 3.207, 2.025, 0.355, 1.633, 3.695, 2.243] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } } } ], @@ -5259,12 +5265,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 551.0, - "unit": "nm" - } } }, { @@ -5311,6 +5311,12 @@ [3.633, 1.53, 2.284, 0.835, 1.057, 3.683, 0.189, 2.223, 3.22, 2.434, 0.361, 0.204, 3.204, 2.376, 1.646, 1.937, 0.218, 2.637, 2.345, 1.886, 0.92, 0.816, 0.12, 3.462, 2.613, 3.967, 0.644, 2.01, 2.782, 0.798, 3.269, 1.105, 1.881, 3.778, 3.589, 1.932, 1.635, 3.984, 1.412, 1.353, 0.038, 0.771, 3.42, 2.761, 0.391, 1.472, 1.698, 3.783, 0.824, 1.27, 1.807] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } } } ], @@ -5320,12 +5326,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 544.0, - "unit": "nm" - } } }, { @@ -5372,6 +5372,12 @@ [1.718, 3.288, 1.808, 1.322, 2.816, 1.409, 2.821, 2.221, 1.09, 3.039, 2.179, 3.44, 2.422, 3.165, 3.256, 2.323, 3.425, 2.786, 3.713, 0.301, 0.234, 1.225, 0.991, 1.847, 0.149, 1.396, 1.359, 3.071, 1.14, 2.268, 0.861, 1.186, 1.511, 2.991, 1.551, 1.817, 0.072, 2.455, 0.772, 0.523, 2.813, 1.762, 0.321, 2.314, 1.859, 1.33, 0.998, 3.596, 1.135, 3.149, 2.273] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } } } ], @@ -5381,12 +5387,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } } }, { @@ -5433,6 +5433,12 @@ [0.996, 1.11, 0.969, 1.572, 0.492, 2.296, 3.96, 1.173, 1.42, 0.05, 3.75, 1.08, 2.821, 2.178, 0.992, 1.928, 3.431, 1.613, 1.439, 2.25, 0.969, 2.014, 3.19, 1.487, 2.471, 0.903, 2.677, 3.988, 2.818, 0.397, 1.762, 1.935, 1.991, 3.995, 3.865, 0.075, 0.542, 1.418, 1.058, 3.52, 0.111, 1.282, 3.351, 0.472, 3.063, 0.682, 1.5, 0.136, 0.867, 3.402, 1.567] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } } } ], @@ -5442,12 +5448,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } } }, { @@ -5494,6 +5494,12 @@ [1.982, 3.696, 0.898, 1.303, 2.981, 1.92, 3.482, 3.1, 3.589, 3.618, 3.972, 2.355, 1.022, 2.287, 1.815, 3.089, 2.826, 2.313, 0.916, 1.386, 2.012, 0.555, 1.918, 2.139, 3.687, 2.662, 2.717, 2.424, 1.789, 3.403, 2.541, 3.121, 3.416, 2.83, 3.779, 2.239, 1.092, 2.692, 0.883, 2.155, 1.059, 2.317, 1.469, 3.901, 0.138, 2.927, 2.328, 2.185, 1.247, 1.592, 2.673] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } } } ], @@ -5503,12 +5509,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 529.0, - "unit": "nm" - } } }, { @@ -5555,6 +5555,12 @@ [1.823, 3.95, 2.016, 3.554, 1.427, 1.777, 2.759, 1.615, 0.319, 3.202, 1.058, 1.31, 0.185, 1.077, 0.851, 2.938, 2.192, 2.507, 3.576, 1.996, 0.134, 1.429, 2.76, 0.326, 3.695, 3.085, 2.016, 2.001, 0.76, 0.333, 0.532, 1.176, 0.197, 0.729, 0.718, 3.17, 1.4, 3.276, 2.351, 0.461, 2.333, 1.076, 0.564, 2.952, 0.001, 1.006, 1.283, 2.824, 3.286, 3.988, 0.136] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } } } ], @@ -5564,12 +5570,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 568.0, - "unit": "nm" - } } }, { @@ -5616,6 +5616,12 @@ [3.677, 1.671, 3.595, 2.538, 0.393, 1.189, 1.69, 3.858, 2.342, 3.761, 0.757, 0.855, 3.985, 2.67, 3.882, 1.113, 3.456, 0.359, 1.681, 1.538, 2.915, 0.155, 3.114, 3.663, 3.058, 0.865, 3.807, 0.324, 2.688, 1.802, 3.192, 2.714, 0.771, 0.196, 0.855, 3.504, 0.601, 2.19, 0.324, 1.98, 3.71, 3.417, 0.009, 0.699, 1.575, 0.22, 0.579, 0.282, 0.119, 3.892, 1.827] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -5625,12 +5631,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -5677,6 +5677,12 @@ [2.465, 1.605, 2.45, 1.221, 3.521, 2.556, 3.932, 3.48, 3.527, 1.382, 1.365, 1.17, 0.54, 0.569, 2.043, 0.084, 3.788, 1.815, 0.377, 0.512, 1.265, 0.034, 3.701, 1.828, 3.497, 0.146, 2.414, 2.088, 2.837, 0.286, 3.525, 0.205, 2.795, 3.974, 0.727, 1.108, 2.321, 2.975, 1.333, 0.947, 0.669, 2.71, 0.796, 0.598, 2.344, 2.247, 3.469, 0.13, 3.531, 0.136, 0.79] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -5686,12 +5692,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -5738,6 +5738,12 @@ [2.467, 3.741, 3.38, 0.562, 2.43, 1.904, 0.622, 1.723, 3.375, 0.141, 1.844, 0.642, 3.241, 1.856, 1.16, 2.374, 0.565, 3.842, 0.935, 1.763, 0.812, 0.481, 3.43, 3.842, 2.554, 3.237, 3.102, 3.483, 1.25, 0.676, 2.284, 2.556, 2.701, 3.495, 1.057, 0.463, 3.414, 3.412, 2.296, 3.204, 1.699, 1.251, 1.958, 0.805, 2.825, 2.067, 1.555, 2.741, 1.184, 3.872, 2.903] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -5747,12 +5753,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -5799,6 +5799,12 @@ [0.288, 2.596, 2.372, 3.978, 1.986, 0.31, 3.538, 2.007, 3.193, 2.801, 1.138, 0.473, 2.698, 1.857, 3.287, 1.94, 3.745, 0.798, 0.696, 2.959, 1.153, 1.545, 1.731, 0.064, 3.56, 2.522, 2.625, 1.017, 0.487, 1.681, 0.361, 2.299, 1.377, 1.773, 1.995, 3.959, 0.329, 3.517, 3.071, 0.152, 3.876, 1.404, 3.102, 0.402, 0.56, 0.778, 3.26, 2.947, 3.537, 0.126, 1.809] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 567.0, + "unit": "nm" + } } } ], @@ -5808,12 +5814,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 567.0, - "unit": "nm" - } } }, { @@ -5860,6 +5860,12 @@ [1.942, 0.487, 0.912, 1.749, 2.742, 0.865, 2.308, 0.417, 3.464, 1.685, 2.52, 1.52, 1.511, 2.44, 2.839, 3.096, 0.925, 3.862, 3.328, 1.611, 0.228, 1.727, 0.543, 3.083, 3.749, 2.443, 1.328, 3.503, 2.782, 3.261, 3.677, 1.479, 0.36, 3.872, 2.418, 1.811, 0.464, 0.023, 3.252, 3.094, 2.02, 3.1, 3.606, 2.467, 1.356, 3.884, 1.59, 1.961, 1.721, 1.682, 2.335] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } } } ], @@ -5869,12 +5875,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 544.0, - "unit": "nm" - } } }, { @@ -5921,6 +5921,12 @@ [3.085, 0.209, 2.515, 1.581, 0.214, 3.943, 1.829, 2.0, 0.299, 3.536, 2.804, 1.634, 0.202, 2.007, 1.04, 1.159, 1.639, 0.021, 1.027, 2.631, 0.901, 0.609, 0.233, 3.59, 1.128, 2.12, 2.076, 1.727, 3.864, 0.852, 3.367, 1.782, 1.1, 0.926, 0.592, 1.27, 1.845, 2.29, 2.203, 1.867, 2.634, 2.022, 2.953, 3.557, 3.215, 1.465, 3.404, 0.46, 0.315, 2.724, 3.95] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } } } ], @@ -5930,12 +5936,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 570.0, - "unit": "nm" - } } }, { @@ -5982,6 +5982,12 @@ [1.939, 0.693, 3.05, 1.434, 2.475, 3.975, 2.924, 0.453, 2.094, 1.867, 0.102, 2.135, 3.446, 0.169, 1.021, 0.533, 3.276, 1.414, 3.77, 3.313, 3.348, 1.818, 3.159, 3.996, 2.878, 1.656, 0.675, 0.374, 3.662, 2.716, 1.615, 1.411, 1.139, 0.901, 1.427, 1.089, 2.05, 3.491, 2.117, 1.294, 2.921, 1.837, 0.109, 0.0, 2.532, 3.887, 3.506, 3.388, 2.194, 0.932, 0.127] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 566.0, + "unit": "nm" + } } } ], @@ -5991,12 +5997,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 566.0, - "unit": "nm" - } } }, { @@ -6043,6 +6043,12 @@ [3.045, 0.545, 3.41, 0.602, 0.121, 1.533, 3.053, 2.555, 0.818, 3.3, 2.549, 0.79, 3.377, 0.251, 2.691, 0.995, 2.544, 2.741, 3.932, 2.483, 3.784, 3.296, 2.475, 0.392, 1.51, 1.708, 3.159, 1.464, 2.991, 2.15, 1.287, 2.18, 2.729, 2.588, 2.57, 0.866, 1.729, 0.299, 1.305, 3.555, 2.996, 0.936, 1.298, 1.994, 0.372, 1.047, 0.732, 3.748, 3.841, 2.891, 0.961] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } } } ], @@ -6052,12 +6058,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 568.0, - "unit": "nm" - } } }, { @@ -6104,6 +6104,12 @@ [0.646, 2.261, 2.449, 0.342, 3.748, 2.069, 3.018, 3.091, 2.413, 2.374, 1.589, 3.564, 2.668, 2.012, 0.368, 2.06, 0.788, 1.681, 1.824, 3.266, 2.245, 1.435, 0.376, 3.486, 2.848, 1.998, 0.48, 0.02, 0.463, 0.976, 3.41, 1.623, 0.099, 1.188, 0.64, 3.919, 0.28, 2.245, 2.821, 2.796, 2.71, 1.207, 2.892, 1.181, 1.407, 1.372, 2.63, 3.981, 0.004, 2.986, 3.943] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } } } ], @@ -6113,12 +6119,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 570.0, - "unit": "nm" - } } }, { @@ -6165,6 +6165,12 @@ [2.067, 2.016, 3.625, 2.715, 3.21, 1.885, 2.962, 1.494, 1.75, 1.588, 2.998, 2.627, 1.436, 2.963, 3.966, 3.465, 1.479, 1.372, 0.449, 1.78, 2.542, 2.859, 3.027, 0.556, 1.037, 2.543, 3.195, 2.079, 1.475, 3.367, 0.498, 0.016, 1.477, 1.033, 1.342, 3.606, 0.473, 2.472, 1.429, 2.034, 1.318, 0.751, 1.07, 1.207, 3.712, 2.58, 1.455, 2.217, 1.44, 1.907, 1.151] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -6174,12 +6180,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -6226,6 +6226,12 @@ [2.609, 3.555, 1.206, 1.4, 3.207, 2.988, 3.069, 1.678, 0.667, 2.689, 0.882, 0.018, 2.383, 1.089, 2.982, 1.15, 0.403, 1.621, 0.359, 2.991, 3.006, 3.943, 2.414, 0.461, 1.791, 1.789, 1.819, 0.843, 2.457, 1.087, 0.977, 0.638, 3.568, 2.216, 1.889, 0.461, 0.271, 3.632, 2.135, 0.617, 1.404, 0.794, 0.761, 3.344, 0.435, 0.732, 2.687, 0.118, 0.73, 1.429, 1.052] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 540.0, + "unit": "nm" + } } } ], @@ -6235,12 +6241,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 540.0, - "unit": "nm" - } } }, { @@ -6287,6 +6287,12 @@ [0.596, 1.081, 2.916, 2.144, 2.665, 1.14, 0.744, 3.608, 1.418, 1.169, 2.225, 3.22, 3.579, 1.712, 0.243, 0.45, 0.166, 3.2, 2.52, 0.879, 0.77, 3.485, 3.741, 1.586, 2.211, 3.181, 3.07, 0.026, 1.059, 3.101, 1.701, 0.113, 1.027, 0.035, 0.38, 3.557, 0.652, 0.072, 3.224, 3.321, 3.527, 0.023, 0.716, 3.448, 3.179, 1.573, 1.181, 1.631, 0.192, 0.282, 2.52] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } } } ], @@ -6296,12 +6302,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 559.0, - "unit": "nm" - } } }, { @@ -6348,6 +6348,12 @@ [0.918, 2.209, 0.55, 0.281, 1.11, 1.339, 1.329, 3.932, 3.483, 2.069, 0.718, 2.549, 2.316, 3.467, 2.111, 2.193, 3.544, 1.331, 0.685, 3.797, 0.094, 3.975, 3.199, 1.351, 0.746, 2.769, 0.293, 2.407, 0.637, 2.0, 1.439, 3.834, 0.776, 0.581, 0.783, 1.904, 0.477, 3.754, 3.27, 2.218, 3.322, 0.139, 3.74, 1.251, 2.809, 1.474, 2.399, 3.98, 1.067, 3.38, 1.637] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 528.0, + "unit": "nm" + } } } ], @@ -6357,12 +6363,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 528.0, - "unit": "nm" - } } }, { @@ -6409,6 +6409,12 @@ [0.299, 3.506, 0.484, 2.426, 0.942, 3.009, 3.198, 3.534, 2.341, 1.045, 2.922, 3.294, 1.483, 0.629, 0.883, 1.773, 1.735, 2.684, 0.207, 1.715, 3.789, 2.061, 2.467, 0.474, 3.955, 0.235, 1.948, 2.542, 3.272, 0.369, 0.312, 1.339, 1.257, 0.362, 1.139, 0.327, 0.291, 2.154, 3.841, 2.895, 1.278, 0.22, 0.928, 1.172, 0.399, 0.844, 2.257, 0.621, 1.925, 3.7, 0.664] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } } } ], @@ -6418,12 +6424,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 526.0, - "unit": "nm" - } } }, { @@ -6470,6 +6470,12 @@ [1.296, 0.859, 1.664, 1.847, 2.238, 1.038, 0.01, 2.47, 0.707, 1.061, 0.656, 0.261, 1.972, 0.733, 1.583, 2.037, 1.12, 3.49, 0.556, 1.481, 3.58, 2.842, 1.312, 0.437, 3.569, 1.133, 1.295, 0.075, 3.11, 1.977, 1.326, 0.617, 3.572, 3.705, 3.015, 0.48, 3.592, 2.515, 2.901, 3.289, 0.281, 3.684, 3.134, 1.833, 0.622, 3.958, 2.956, 0.439, 2.816, 2.807, 1.136] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } } } ], @@ -6479,12 +6485,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } } }, { @@ -6531,6 +6531,12 @@ [1.131, 1.369, 2.218, 1.083, 2.453, 3.547, 1.227, 2.277, 1.104, 3.743, 3.934, 3.36, 2.729, 3.735, 0.038, 0.689, 2.266, 1.717, 1.102, 2.445, 2.604, 0.588, 1.266, 1.2, 3.896, 3.708, 3.478, 3.814, 3.61, 2.176, 0.856, 1.258, 0.303, 0.841, 0.194, 3.248, 1.353, 2.621, 0.561, 0.932, 2.364, 0.237, 1.796, 3.546, 0.346, 0.324, 0.404, 2.098, 0.583, 3.269, 0.689] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 530.0, + "unit": "nm" + } } } ], @@ -6540,12 +6546,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 530.0, - "unit": "nm" - } } }, { @@ -6592,6 +6592,12 @@ [2.721, 1.713, 0.361, 2.531, 0.542, 0.102, 1.018, 1.186, 2.745, 0.069, 1.412, 2.667, 2.928, 2.886, 2.676, 3.056, 1.888, 3.54, 0.79, 3.336, 3.644, 1.155, 0.17, 0.08, 2.367, 2.792, 1.719, 0.853, 3.572, 3.303, 1.379, 3.231, 0.34, 1.486, 2.134, 3.544, 3.941, 2.309, 3.651, 3.145, 0.334, 1.435, 1.816, 0.863, 0.952, 1.57, 2.868, 0.659, 1.669, 1.267, 2.516] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } } } ], @@ -6601,12 +6607,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } } }, { @@ -6653,6 +6653,12 @@ [2.558, 3.793, 3.933, 1.044, 1.566, 1.543, 0.281, 0.164, 1.75, 2.382, 0.165, 1.614, 3.441, 2.689, 2.181, 2.326, 1.441, 0.752, 3.132, 3.115, 3.578, 3.888, 1.644, 3.001, 2.209, 3.338, 3.306, 3.128, 0.796, 3.923, 1.059, 3.183, 2.305, 0.786, 2.821, 3.437, 0.407, 0.442, 0.568, 2.001, 3.66, 2.144, 1.901, 0.762, 0.169, 3.821, 2.374, 2.173, 2.77, 3.244, 1.427] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 540.0, + "unit": "nm" + } } } ], @@ -6662,12 +6668,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 540.0, - "unit": "nm" - } } }, { @@ -6714,6 +6714,12 @@ [3.907, 2.537, 2.152, 2.938, 2.669, 2.149, 0.931, 2.835, 2.227, 2.236, 1.152, 3.368, 1.826, 1.322, 0.981, 3.308, 2.655, 3.868, 2.744, 1.919, 0.999, 0.183, 1.13, 3.455, 1.434, 1.987, 0.881, 2.832, 2.388, 0.964, 1.133, 0.357, 1.552, 2.496, 1.152, 0.645, 0.153, 1.848, 0.151, 1.287, 3.475, 1.607, 2.34, 3.764, 2.507, 2.775, 0.074, 3.439, 3.187, 0.512, 3.719] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } } } ], @@ -6723,12 +6729,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 520.0, - "unit": "nm" - } } }, { @@ -6775,6 +6775,12 @@ [2.305, 0.026, 1.325, 0.428, 3.723, 1.406, 2.697, 1.503, 0.682, 1.267, 2.099, 0.446, 1.263, 1.103, 0.794, 1.816, 3.33, 0.17, 0.335, 3.155, 0.806, 3.716, 1.456, 2.443, 3.392, 1.843, 1.366, 0.947, 2.658, 1.912, 1.441, 3.644, 1.876, 1.244, 2.827, 0.331, 0.226, 2.068, 1.428, 3.238, 1.456, 0.344, 3.469, 0.02, 1.375, 1.16, 1.077, 2.661, 1.712, 0.959, 0.744] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } } } ], @@ -6784,12 +6790,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 544.0, - "unit": "nm" - } } }, { @@ -6836,6 +6836,12 @@ [3.269, 2.852, 1.356, 2.912, 2.588, 2.569, 2.881, 1.036, 1.88, 0.04, 1.749, 2.844, 2.769, 3.825, 2.455, 2.57, 0.018, 2.275, 0.463, 1.589, 1.261, 2.742, 1.096, 1.699, 0.461, 0.247, 1.435, 1.068, 2.231, 0.766, 2.704, 3.235, 1.699, 1.167, 2.172, 0.792, 0.519, 2.332, 0.239, 1.761, 1.345, 1.032, 3.548, 3.198, 3.707, 1.499, 0.699, 0.194, 2.92, 2.59, 1.058] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } } } ], @@ -6845,12 +6851,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } } }, { @@ -6897,6 +6897,12 @@ [0.386, 1.249, 3.369, 3.482, 0.526, 1.755, 3.656, 2.45, 2.341, 1.133, 1.813, 2.804, 1.114, 1.336, 2.513, 1.145, 1.601, 1.652, 1.663, 2.05, 1.686, 2.035, 2.701, 0.244, 0.229, 3.194, 1.898, 1.992, 2.961, 3.547, 1.241, 2.147, 3.641, 3.707, 2.318, 1.986, 2.329, 1.685, 1.646, 3.036, 0.863, 3.881, 1.897, 0.628, 3.531, 2.227, 2.433, 1.862, 1.193, 0.354, 3.098] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } } } ], @@ -6906,12 +6912,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } } }, { @@ -6958,6 +6958,12 @@ [2.542, 1.257, 0.54, 3.371, 2.35, 2.548, 3.125, 3.253, 1.332, 3.857, 1.663, 3.489, 2.794, 3.892, 3.665, 3.163, 1.406, 3.017, 0.526, 2.816, 3.916, 0.006, 2.626, 1.186, 1.805, 0.138, 2.073, 0.712, 2.001, 0.76, 0.036, 0.799, 2.607, 0.449, 2.698, 0.89, 3.101, 0.335, 3.967, 3.438, 3.204, 2.431, 0.313, 3.179, 3.199, 0.391, 3.103, 0.735, 3.866, 3.064, 1.027] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } } } ], @@ -6967,12 +6973,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 559.0, - "unit": "nm" - } } }, { @@ -7019,6 +7019,12 @@ [2.844, 0.666, 1.537, 3.181, 2.535, 2.63, 3.353, 1.566, 2.212, 0.474, 2.412, 1.251, 0.571, 3.82, 0.864, 0.881, 2.344, 1.193, 2.775, 0.062, 1.07, 3.049, 1.088, 3.611, 1.484, 3.692, 3.447, 1.987, 1.413, 1.034, 1.337, 0.846, 2.936, 3.733, 1.192, 0.132, 1.069, 1.267, 0.163, 2.259, 3.747, 2.769, 1.755, 2.963, 0.791, 1.179, 3.741, 3.358, 2.334, 3.51, 0.758] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 560.0, + "unit": "nm" + } } } ], @@ -7028,12 +7034,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 560.0, - "unit": "nm" - } } }, { @@ -7080,6 +7080,12 @@ [3.541, 1.091, 3.002, 3.956, 3.794, 3.578, 1.925, 1.696, 2.842, 3.183, 1.365, 0.152, 1.177, 3.137, 1.566, 2.315, 0.838, 2.628, 0.732, 3.811, 1.077, 1.03, 0.515, 0.314, 2.301, 1.294, 2.125, 2.82, 0.304, 3.951, 0.088, 3.653, 1.903, 0.275, 1.796, 3.755, 3.934, 3.777, 1.397, 0.554, 3.143, 3.57, 1.32, 3.076, 2.381, 2.617, 0.578, 3.826, 3.225, 2.864, 2.903] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 556.0, + "unit": "nm" + } } } ], @@ -7089,12 +7095,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 556.0, - "unit": "nm" - } } }, { @@ -7141,6 +7141,12 @@ [0.73, 1.601, 3.698, 3.681, 2.51, 0.575, 2.688, 1.655, 2.5, 1.453, 3.105, 1.392, 2.891, 3.094, 1.712, 2.248, 0.902, 1.34, 1.81, 2.381, 1.061, 1.23, 0.178, 0.668, 1.506, 3.709, 1.439, 1.932, 3.683, 0.715, 2.298, 3.594, 1.439, 1.048, 3.358, 2.051, 2.205, 0.593, 3.285, 3.179, 1.246, 2.121, 2.897, 3.1, 0.037, 2.178, 2.429, 3.981, 0.669, 0.368, 3.676] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 523.0, + "unit": "nm" + } } } ], @@ -7150,12 +7156,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 523.0, - "unit": "nm" - } } }, { @@ -7202,6 +7202,12 @@ [2.485, 1.415, 0.483, 1.841, 3.499, 1.423, 3.029, 2.175, 2.8, 3.136, 0.755, 1.971, 1.784, 3.154, 3.511, 3.952, 1.843, 3.736, 3.661, 0.043, 0.308, 2.054, 2.631, 1.135, 2.939, 2.332, 1.077, 0.63, 3.327, 1.28, 1.457, 1.263, 3.315, 1.039, 3.813, 2.179, 0.956, 3.206, 3.858, 0.628, 3.175, 2.417, 0.484, 0.043, 0.49, 0.15, 1.113, 3.946, 0.526, 2.225, 0.585] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -7211,12 +7217,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -7263,6 +7263,12 @@ [0.245, 1.008, 0.324, 3.367, 0.43, 2.783, 3.348, 2.902, 1.167, 0.345, 2.399, 2.847, 1.52, 1.678, 3.492, 2.655, 0.744, 3.341, 1.332, 2.996, 2.637, 3.877, 3.032, 0.868, 1.89, 1.57, 2.588, 0.644, 2.789, 1.219, 1.131, 0.104, 1.101, 0.694, 1.212, 0.254, 2.99, 1.672, 3.382, 3.395, 1.607, 0.304, 2.691, 0.283, 0.775, 3.57, 2.964, 2.364, 0.997, 1.494, 0.369] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -7272,12 +7278,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -7324,6 +7324,12 @@ [0.605, 3.193, 3.229, 1.948, 0.367, 1.975, 3.456, 1.477, 2.86, 0.195, 2.703, 0.113, 3.948, 3.214, 2.295, 1.745, 0.825, 0.465, 3.237, 3.665, 3.072, 3.958, 1.936, 1.388, 2.333, 1.186, 2.749, 0.092, 2.32, 2.605, 0.223, 3.646, 1.294, 0.85, 0.525, 0.91, 1.872, 2.745, 0.845, 2.278, 3.533, 0.195, 0.521, 3.199, 2.903, 0.191, 2.742, 1.069, 2.48, 1.824, 2.138] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 540.0, + "unit": "nm" + } } } ], @@ -7333,12 +7339,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 540.0, - "unit": "nm" - } } }, { @@ -7385,6 +7385,12 @@ [1.898, 1.759, 1.829, 1.296, 0.646, 1.256, 1.84, 3.615, 3.18, 3.226, 3.364, 3.156, 0.254, 3.972, 3.057, 2.818, 3.098, 2.688, 1.385, 3.873, 2.079, 3.62, 0.959, 0.131, 2.877, 3.436, 2.737, 2.485, 2.142, 2.443, 1.68, 1.612, 0.495, 0.467, 2.324, 1.887, 3.464, 3.553, 3.879, 3.653, 0.031, 3.13, 1.664, 3.052, 0.169, 1.038, 0.267, 3.227, 3.846, 1.372, 3.644] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 558.0, + "unit": "nm" + } } } ], @@ -7394,12 +7400,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 558.0, - "unit": "nm" - } } }, { @@ -7446,6 +7446,12 @@ [2.38, 1.094, 1.951, 0.058, 2.278, 0.8, 1.698, 2.419, 1.209, 2.519, 3.355, 1.473, 0.736, 1.546, 1.752, 2.661, 3.787, 1.647, 1.17, 3.353, 3.544, 2.809, 1.731, 3.842, 2.949, 1.955, 1.906, 3.961, 1.838, 3.169, 3.509, 2.638, 0.769, 2.798, 3.299, 0.517, 2.544, 0.408, 0.045, 1.086, 1.766, 1.133, 2.669, 1.133, 0.675, 1.656, 0.928, 1.506, 2.417, 2.377, 0.48] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 540.0, + "unit": "nm" + } } } ], @@ -7455,12 +7461,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 540.0, - "unit": "nm" - } } }, { @@ -7507,6 +7507,12 @@ [1.579, 2.676, 2.018, 0.1, 3.571, 3.363, 2.109, 1.108, 0.323, 2.894, 1.736, 0.58, 2.04, 3.01, 0.717, 0.704, 1.937, 2.246, 1.234, 0.116, 3.378, 1.601, 0.083, 1.586, 2.411, 0.14, 0.597, 3.166, 1.292, 1.027, 0.4, 1.544, 3.461, 2.689, 1.93, 3.962, 2.75, 2.698, 3.727, 1.154, 0.435, 3.299, 3.722, 2.191, 0.03, 0.552, 0.628, 2.123, 3.958, 0.952, 2.99] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 562.0, + "unit": "nm" + } } } ], @@ -7516,12 +7522,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 562.0, - "unit": "nm" - } } }, { @@ -7568,6 +7568,12 @@ [3.259, 1.182, 2.26, 1.101, 3.977, 2.592, 0.432, 1.689, 3.431, 2.765, 2.942, 3.816, 3.295, 2.493, 0.192, 1.119, 3.351, 1.079, 0.754, 1.953, 3.238, 2.519, 0.08, 3.68, 0.078, 1.879, 1.891, 1.556, 1.858, 3.511, 2.473, 3.207, 0.34, 2.036, 1.141, 0.361, 1.2, 1.587, 1.952, 1.369, 2.318, 1.009, 0.296, 2.388, 1.492, 3.483, 0.426, 3.698, 3.837, 3.433, 1.277] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } } } ], @@ -7577,12 +7583,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 568.0, - "unit": "nm" - } } }, { @@ -7629,6 +7629,12 @@ [1.043, 3.203, 2.999, 3.751, 0.74, 1.102, 2.579, 1.023, 2.098, 0.7, 2.875, 3.83, 3.919, 0.291, 3.735, 3.475, 1.259, 1.352, 3.831, 3.918, 1.763, 3.127, 3.385, 3.634, 2.229, 2.223, 1.692, 2.187, 0.594, 1.452, 2.193, 1.718, 2.424, 2.234, 1.43, 0.003, 1.341, 2.284, 0.401, 3.259, 2.621, 0.563, 3.853, 0.668, 3.442, 1.178, 0.376, 2.097, 1.757, 0.007, 3.167] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -7638,12 +7644,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -7690,6 +7690,12 @@ [2.345, 0.006, 3.515, 3.513, 1.916, 3.818, 3.364, 1.522, 2.516, 3.409, 0.392, 0.428, 0.646, 2.506, 1.156, 1.405, 1.685, 2.861, 3.731, 2.134, 2.974, 0.951, 0.571, 1.297, 1.199, 3.273, 2.716, 0.191, 1.05, 1.847, 3.594, 0.429, 0.586, 2.284, 3.848, 1.712, 2.909, 2.72, 3.513, 0.185, 1.976, 0.762, 1.884, 3.849, 2.228, 0.135, 3.207, 2.162, 2.286, 3.772, 2.69] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } } } ], @@ -7699,12 +7705,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } } }, { @@ -7751,6 +7751,12 @@ [3.235, 2.026, 1.873, 0.192, 1.393, 3.434, 2.218, 2.313, 2.642, 1.102, 3.172, 0.471, 0.669, 3.814, 3.962, 3.842, 2.362, 2.658, 3.444, 2.496, 2.965, 3.347, 3.546, 0.157, 2.211, 3.067, 0.722, 3.068, 1.064, 0.066, 0.554, 1.905, 1.277, 3.156, 0.359, 2.403, 2.713, 2.091, 2.455, 2.277, 0.691, 0.406, 0.871, 3.082, 2.804, 0.29, 1.214, 0.034, 2.266, 0.292, 0.845] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -7760,12 +7766,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -7812,6 +7812,12 @@ [3.504, 2.842, 1.276, 3.725, 3.888, 2.48, 1.715, 1.981, 2.326, 2.711, 3.149, 1.249, 2.575, 0.548, 1.266, 3.194, 1.512, 3.455, 1.559, 1.128, 0.27, 0.202, 1.166, 1.805, 2.558, 2.475, 0.463, 1.353, 1.921, 1.852, 0.688, 0.801, 0.771, 3.221, 1.049, 3.063, 0.001, 3.431, 0.47, 3.922, 0.998, 0.11, 0.129, 3.565, 1.541, 3.157, 2.295, 2.534, 1.537, 1.096, 3.701] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 524.0, + "unit": "nm" + } } } ], @@ -7821,12 +7827,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 524.0, - "unit": "nm" - } } }, { @@ -7873,6 +7873,12 @@ [0.578, 0.707, 3.163, 0.574, 3.301, 1.675, 3.471, 1.166, 1.412, 2.016, 0.361, 0.059, 0.473, 2.023, 2.347, 0.477, 3.354, 3.498, 2.203, 3.193, 2.081, 2.985, 1.636, 0.13, 0.16, 0.073, 1.6, 0.263, 3.401, 0.18, 1.929, 3.815, 0.824, 2.151, 0.109, 0.094, 1.608, 2.647, 1.748, 1.387, 0.529, 2.265, 3.058, 1.906, 0.636, 0.05, 3.656, 1.542, 3.193, 2.679, 2.941] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } } } ], @@ -7882,12 +7888,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } } }, { @@ -7934,6 +7934,12 @@ [3.035, 3.334, 1.903, 1.62, 1.593, 3.07, 3.032, 0.414, 3.227, 0.075, 3.207, 1.764, 1.232, 0.087, 0.546, 3.235, 2.321, 1.914, 2.253, 2.869, 0.707, 1.749, 0.815, 2.663, 3.816, 3.927, 3.73, 3.494, 0.109, 0.417, 0.058, 1.069, 0.721, 1.238, 2.894, 0.48, 2.92, 0.531, 2.516, 1.023, 2.575, 2.232, 2.521, 1.312, 1.322, 0.5, 1.825, 1.819, 0.089, 0.814, 1.334] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 546.0, + "unit": "nm" + } } } ], @@ -7943,12 +7949,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 546.0, - "unit": "nm" - } } }, { @@ -7995,6 +7995,12 @@ [3.627, 0.94, 3.81, 2.234, 1.285, 2.519, 3.24, 1.804, 1.666, 3.34, 3.538, 0.304, 2.809, 0.017, 2.137, 1.042, 3.993, 1.192, 0.065, 0.315, 1.79, 3.397, 1.229, 0.294, 2.474, 3.228, 3.503, 1.341, 3.315, 2.101, 1.911, 3.405, 3.294, 3.083, 0.43, 0.129, 0.911, 3.003, 1.608, 1.961, 3.679, 2.726, 0.85, 1.683, 3.036, 1.927, 3.711, 1.294, 3.184, 3.457, 1.831] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 552.0, + "unit": "nm" + } } } ], @@ -8004,12 +8010,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 552.0, - "unit": "nm" - } } }, { @@ -8056,6 +8056,12 @@ [0.626, 0.024, 0.499, 3.543, 0.229, 3.71, 3.515, 3.76, 2.057, 3.015, 1.899, 2.488, 3.564, 1.429, 0.132, 1.009, 3.726, 3.587, 2.008, 0.131, 0.99, 3.584, 2.103, 0.635, 3.063, 2.547, 3.546, 1.257, 0.546, 3.516, 2.208, 2.156, 3.858, 0.269, 1.285, 3.381, 2.795, 3.54, 0.2, 0.418, 1.395, 3.243, 3.55, 2.946, 1.78, 0.238, 1.285, 0.254, 2.904, 0.918, 3.985] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } } } ], @@ -8065,12 +8071,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 526.0, - "unit": "nm" - } } }, { @@ -8117,6 +8117,12 @@ [1.707, 1.176, 3.326, 0.841, 1.041, 1.92, 3.864, 0.479, 1.682, 0.164, 2.258, 3.213, 2.541, 0.806, 3.742, 2.63, 3.295, 0.143, 0.751, 2.214, 0.185, 3.386, 1.589, 2.735, 1.746, 0.034, 3.157, 2.854, 2.825, 1.262, 3.292, 2.353, 3.628, 3.53, 0.501, 0.98, 0.532, 3.427, 0.244, 1.46, 2.931, 3.06, 2.518, 0.253, 3.137, 0.029, 1.008, 2.139, 2.037, 1.607, 1.989] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -8126,12 +8132,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -8178,6 +8178,12 @@ [0.11, 2.152, 2.703, 3.799, 2.32, 3.586, 0.59, 3.095, 1.006, 2.762, 1.009, 1.653, 0.419, 0.872, 3.905, 3.585, 3.011, 0.305, 2.762, 2.098, 3.867, 3.899, 3.29, 3.283, 1.125, 0.868, 1.335, 3.598, 1.716, 3.026, 1.017, 0.816, 1.217, 3.272, 3.182, 0.2, 0.924, 3.73, 2.18, 1.393, 3.941, 0.332, 3.237, 2.698, 1.921, 1.406, 2.098, 3.381, 3.232, 0.444, 1.997] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -8187,12 +8193,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -8239,6 +8239,12 @@ [1.834, 3.275, 3.509, 2.122, 0.21, 2.861, 3.42, 2.674, 1.452, 2.25, 0.992, 1.378, 1.98, 1.745, 0.192, 0.436, 1.146, 1.69, 3.704, 2.661, 3.28, 2.124, 1.368, 2.156, 3.535, 0.662, 0.592, 1.362, 3.718, 2.769, 1.954, 0.366, 1.272, 1.029, 3.182, 1.541, 1.708, 1.15, 2.972, 1.338, 1.503, 1.056, 0.728, 3.143, 2.949, 2.953, 1.257, 0.952, 1.728, 0.97, 0.952] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } } } ], @@ -8248,12 +8254,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 526.0, - "unit": "nm" - } } }, { @@ -8300,6 +8300,12 @@ [1.69, 3.527, 1.782, 2.716, 3.709, 1.907, 1.352, 2.586, 3.547, 2.269, 2.058, 2.955, 2.682, 0.295, 0.625, 0.106, 0.951, 2.562, 2.651, 2.727, 3.995, 2.718, 2.365, 1.157, 2.224, 1.396, 2.224, 3.207, 0.581, 3.405, 3.639, 3.633, 2.748, 1.817, 0.263, 0.838, 3.49, 2.313, 3.472, 3.633, 0.355, 2.563, 3.424, 3.069, 3.444, 2.1, 2.046, 2.847, 2.323, 2.847, 0.305] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } } } ], @@ -8309,12 +8315,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 550.0, - "unit": "nm" - } } }, { @@ -8361,6 +8361,12 @@ [2.39, 3.076, 2.242, 0.957, 2.972, 1.162, 0.624, 0.491, 2.313, 3.682, 2.145, 2.005, 0.142, 2.629, 2.424, 0.207, 0.865, 0.032, 3.787, 0.615, 2.638, 3.089, 3.018, 2.372, 1.431, 3.294, 3.296, 1.712, 0.124, 3.35, 3.377, 0.883, 1.734, 3.099, 1.249, 0.557, 0.505, 0.859, 1.291, 3.675, 2.865, 1.822, 1.159, 3.95, 2.21, 0.558, 3.281, 0.439, 1.02, 1.893, 1.18] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 546.0, + "unit": "nm" + } } } ], @@ -8370,12 +8376,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 546.0, - "unit": "nm" - } } }, { @@ -8422,6 +8422,12 @@ [2.815, 2.535, 2.231, 1.667, 3.3, 0.058, 3.87, 3.525, 3.678, 1.866, 2.911, 0.366, 2.963, 0.305, 1.261, 0.27, 1.042, 1.38, 1.867, 3.701, 0.005, 2.74, 0.112, 1.75, 0.816, 1.93, 3.067, 0.162, 0.872, 0.012, 2.856, 0.692, 2.231, 2.169, 0.562, 2.347, 3.503, 1.431, 1.948, 0.499, 0.635, 1.334, 1.612, 1.809, 3.954, 1.455, 2.195, 3.645, 0.948, 0.288, 2.239] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -8431,12 +8437,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -8483,6 +8483,12 @@ [3.059, 3.152, 2.191, 1.175, 0.074, 2.423, 0.481, 0.851, 1.37, 0.99, 3.708, 2.652, 3.666, 3.01, 2.218, 2.134, 0.794, 3.743, 2.914, 0.767, 3.61, 3.431, 1.368, 3.066, 2.67, 1.128, 2.302, 1.796, 3.36, 3.735, 3.421, 3.214, 0.584, 1.773, 3.796, 1.54, 0.039, 0.994, 0.487, 3.924, 3.021, 0.58, 0.578, 3.508, 0.927, 2.682, 1.946, 2.799, 1.735, 3.32, 1.401] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } } } ], @@ -8492,12 +8498,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 549.0, - "unit": "nm" - } } }, { @@ -8544,6 +8544,12 @@ [3.902, 2.033, 3.52, 2.628, 3.628, 1.784, 3.125, 2.504, 2.945, 0.121, 2.684, 1.49, 1.635, 1.568, 0.493, 2.067, 1.893, 3.213, 0.678, 2.094, 3.799, 3.255, 2.99, 1.745, 3.03, 2.852, 1.859, 2.139, 3.988, 3.182, 3.503, 0.06, 0.039, 2.333, 3.519, 1.18, 1.064, 3.144, 0.167, 3.756, 0.914, 2.49, 1.541, 3.803, 0.336, 3.089, 2.943, 1.939, 0.433, 0.614, 0.052] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } } } ], @@ -8553,12 +8559,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 549.0, - "unit": "nm" - } } }, { @@ -8605,6 +8605,12 @@ [3.585, 1.057, 1.225, 1.601, 0.647, 3.043, 1.774, 3.597, 0.776, 3.924, 0.986, 2.515, 3.763, 0.617, 2.624, 1.45, 3.301, 2.049, 3.313, 1.003, 2.748, 3.046, 0.921, 1.18, 1.309, 1.713, 3.187, 1.408, 3.94, 3.908, 3.92, 1.705, 3.374, 3.129, 3.918, 3.003, 2.814, 0.731, 2.871, 2.136, 3.289, 3.547, 3.391, 3.832, 3.928, 3.975, 1.777, 3.185, 1.712, 1.638, 3.642] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } } } ], @@ -8614,12 +8620,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 549.0, - "unit": "nm" - } } }, { @@ -8666,6 +8666,12 @@ [3.889, 1.119, 3.61, 1.304, 0.539, 0.135, 0.045, 0.292, 2.933, 3.856, 0.366, 3.656, 0.868, 0.003, 3.28, 3.14, 0.634, 0.698, 3.62, 2.636, 2.569, 3.177, 1.177, 1.714, 3.201, 3.654, 1.089, 1.251, 1.333, 3.935, 0.001, 3.695, 2.302, 0.265, 0.03, 0.586, 3.763, 1.824, 3.379, 2.868, 2.768, 0.439, 3.937, 2.279, 2.923, 3.89, 2.522, 3.828, 0.648, 0.834, 1.143] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 566.0, + "unit": "nm" + } } } ], @@ -8675,12 +8681,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 566.0, - "unit": "nm" - } } }, { @@ -8727,6 +8727,12 @@ [2.486, 2.092, 3.002, 1.072, 0.711, 3.942, 1.896, 2.103, 0.884, 3.045, 2.793, 2.958, 2.998, 3.855, 0.67, 1.354, 0.602, 3.973, 2.693, 3.376, 2.81, 1.319, 0.752, 3.867, 2.13, 3.24, 2.897, 2.791, 3.311, 1.132, 1.261, 0.602, 0.499, 2.792, 1.514, 1.603, 3.299, 3.192, 3.318, 0.644, 1.867, 3.721, 2.495, 3.822, 3.974, 1.48, 0.939, 2.424, 2.252, 2.535, 1.92] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } } } ], @@ -8736,12 +8742,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } } }, { @@ -8788,6 +8788,12 @@ [3.855, 1.954, 1.457, 2.332, 1.167, 1.34, 3.134, 2.942, 1.471, 1.044, 3.104, 2.792, 3.752, 1.783, 2.19, 2.459, 0.206, 2.34, 3.066, 2.055, 1.409, 0.654, 2.049, 1.509, 3.088, 2.824, 0.929, 3.892, 0.65, 2.3, 0.472, 0.538, 0.775, 3.211, 1.406, 2.648, 3.041, 0.459, 0.347, 0.263, 0.165, 0.25, 1.847, 3.599, 2.762, 0.929, 2.742, 2.039, 1.784, 3.02, 0.733] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } } } ], @@ -8797,12 +8803,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 520.0, - "unit": "nm" - } } }, { @@ -8849,6 +8849,12 @@ [0.083, 3.186, 0.48, 0.511, 3.2, 3.905, 3.948, 3.244, 2.342, 0.41, 3.241, 2.292, 3.171, 0.571, 2.566, 2.016, 0.54, 0.377, 3.542, 3.417, 3.746, 1.993, 2.802, 1.889, 1.159, 2.807, 2.45, 2.746, 2.159, 0.081, 2.89, 2.108, 1.629, 1.567, 0.389, 1.352, 0.295, 2.7, 2.205, 2.742, 3.093, 1.215, 2.005, 3.852, 0.923, 1.958, 2.675, 3.027, 0.196, 2.912, 2.202] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -8858,12 +8864,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -8910,6 +8910,12 @@ [1.661, 2.241, 3.603, 0.986, 2.09, 0.383, 2.59, 3.351, 0.393, 1.455, 1.201, 1.084, 2.26, 1.52, 1.133, 0.662, 1.603, 0.182, 1.214, 1.72, 1.84, 2.172, 0.8, 0.323, 2.531, 3.988, 2.95, 0.965, 3.2, 0.131, 3.423, 2.55, 3.246, 1.879, 1.228, 3.867, 2.026, 0.58, 2.299, 0.968, 1.704, 3.348, 1.812, 1.287, 1.892, 0.13, 3.744, 2.332, 3.79, 1.295, 1.072] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } } } ], @@ -8919,12 +8925,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } } }, { @@ -8971,6 +8971,12 @@ [2.844, 2.982, 1.192, 0.362, 3.489, 1.441, 3.279, 2.455, 2.102, 1.433, 1.624, 0.151, 0.262, 2.031, 2.65, 1.837, 0.381, 0.291, 1.265, 2.635, 1.022, 1.883, 0.245, 0.016, 2.491, 0.359, 3.512, 2.431, 2.4, 0.243, 0.618, 1.175, 1.905, 3.059, 0.578, 3.568, 2.054, 1.517, 1.739, 2.426, 2.747, 2.125, 0.197, 3.534, 0.08, 3.197, 1.549, 3.255, 3.241, 2.292, 3.363] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } } } ], @@ -8980,12 +8986,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 520.0, - "unit": "nm" - } } }, { @@ -9032,6 +9032,12 @@ [2.04, 2.525, 2.659, 0.049, 0.961, 2.736, 1.175, 1.87, 3.129, 1.928, 0.848, 0.054, 1.858, 0.815, 0.449, 2.245, 1.202, 1.453, 3.082, 3.783, 2.863, 2.552, 2.838, 3.888, 2.896, 1.686, 0.71, 3.936, 3.294, 2.809, 0.256, 3.189, 0.107, 0.88, 2.577, 2.649, 3.245, 3.009, 3.616, 0.832, 0.878, 3.647, 2.609, 0.497, 1.899, 2.071, 2.338, 2.719, 3.63, 0.951, 0.347] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } } } ], @@ -9041,12 +9047,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 548.0, - "unit": "nm" - } } }, { @@ -9093,6 +9093,12 @@ [1.802, 0.159, 2.509, 0.5, 3.487, 3.686, 2.771, 1.152, 3.275, 2.025, 1.239, 2.576, 0.319, 1.672, 1.658, 3.946, 0.978, 2.237, 1.799, 3.0, 2.193, 1.836, 2.25, 2.904, 3.216, 3.942, 2.34, 1.989, 0.825, 3.347, 1.991, 0.305, 2.342, 2.462, 2.454, 3.03, 1.598, 0.38, 3.09, 2.963, 0.474, 1.857, 0.341, 2.806, 3.638, 1.071, 2.29, 2.825, 0.24, 2.124, 1.36] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -9102,12 +9108,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -9154,6 +9154,12 @@ [0.481, 1.83, 1.95, 2.153, 3.965, 1.908, 3.604, 1.283, 3.544, 1.345, 0.781, 0.327, 3.927, 0.033, 0.934, 0.233, 1.856, 3.217, 2.628, 2.348, 0.598, 3.147, 2.835, 2.526, 0.336, 1.494, 3.443, 3.265, 2.145, 1.652, 3.515, 1.748, 2.7, 1.987, 1.509, 2.474, 0.391, 0.309, 2.488, 1.121, 1.993, 3.096, 3.545, 1.618, 3.692, 1.529, 0.414, 2.773, 2.704, 0.837, 0.433] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } } } ], @@ -9163,12 +9169,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 542.0, - "unit": "nm" - } } }, { @@ -9215,6 +9215,12 @@ [3.608, 1.612, 3.776, 0.762, 1.334, 2.994, 3.424, 1.817, 2.47, 2.465, 0.338, 3.138, 1.892, 1.83, 3.032, 1.626, 1.939, 2.523, 2.459, 3.841, 1.547, 0.729, 1.506, 0.355, 1.502, 3.601, 1.217, 2.833, 2.806, 1.08, 0.67, 0.561, 1.307, 1.218, 3.906, 0.136, 2.924, 1.225, 0.175, 3.48, 0.967, 2.491, 0.017, 2.656, 1.654, 3.957, 1.653, 3.787, 0.659, 3.902, 2.474] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } } } ], @@ -9224,12 +9230,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 520.0, - "unit": "nm" - } } }, { @@ -9276,6 +9276,12 @@ [0.249, 0.245, 0.996, 2.886, 2.879, 0.106, 3.421, 3.259, 1.733, 1.777, 0.59, 3.011, 1.39, 1.794, 3.777, 1.831, 0.673, 1.923, 2.896, 2.702, 0.714, 2.348, 2.979, 2.874, 3.055, 0.711, 2.85, 2.7, 1.544, 1.947, 1.429, 2.174, 2.903, 2.605, 0.421, 0.316, 0.311, 2.332, 1.027, 0.03, 3.503, 1.965, 2.441, 1.703, 0.376, 3.48, 2.626, 0.861, 1.876, 2.125, 0.979] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -9285,12 +9291,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -9337,6 +9337,12 @@ [1.864, 1.763, 1.2, 1.76, 1.9, 1.265, 2.121, 3.83, 2.167, 1.255, 0.72, 1.715, 3.785, 0.347, 2.416, 0.107, 2.785, 1.373, 3.461, 1.52, 2.341, 0.895, 2.866, 3.199, 2.749, 3.907, 1.276, 2.497, 3.575, 2.084, 1.989, 0.823, 3.418, 0.967, 3.565, 0.41, 1.702, 0.845, 2.521, 3.05, 2.189, 2.501, 2.859, 2.774, 2.782, 0.25, 2.655, 1.355, 1.96, 3.373, 3.841] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } } } ], @@ -9346,12 +9352,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 570.0, - "unit": "nm" - } } }, { @@ -9398,6 +9398,12 @@ [3.487, 2.415, 0.605, 2.638, 0.968, 2.897, 2.001, 3.011, 1.992, 3.989, 3.624, 0.255, 0.083, 3.266, 3.896, 2.296, 2.818, 0.781, 2.005, 2.404, 1.94, 2.852, 0.41, 3.33, 3.839, 2.035, 0.092, 0.416, 2.498, 1.251, 3.92, 0.537, 0.201, 2.243, 2.501, 2.408, 2.812, 2.329, 2.597, 1.513, 3.701, 1.834, 0.528, 3.061, 2.565, 2.246, 2.776, 3.507, 2.886, 1.953, 3.837] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } } } ], @@ -9407,12 +9413,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 544.0, - "unit": "nm" - } } }, { @@ -9459,6 +9459,12 @@ [0.574, 3.954, 0.968, 1.9, 0.635, 2.004, 1.275, 2.798, 2.932, 2.804, 1.585, 0.512, 0.741, 0.068, 3.086, 0.053, 1.84, 0.765, 1.488, 3.483, 0.488, 2.184, 0.492, 2.703, 0.106, 2.324, 1.349, 0.764, 1.593, 3.259, 0.584, 1.529, 0.545, 1.413, 3.345, 0.582, 3.233, 0.342, 1.865, 0.403, 1.537, 3.53, 3.664, 2.708, 2.115, 1.321, 3.786, 2.992, 3.478, 2.192, 0.936] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 567.0, + "unit": "nm" + } } } ], @@ -9468,12 +9474,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 567.0, - "unit": "nm" - } } }, { @@ -9520,6 +9520,12 @@ [2.741, 1.397, 2.469, 3.348, 2.39, 3.462, 2.265, 1.794, 2.311, 0.655, 0.51, 1.205, 3.673, 2.22, 0.055, 3.967, 3.327, 0.723, 2.503, 0.82, 1.497, 2.899, 1.085, 1.946, 0.958, 2.519, 1.783, 0.587, 2.784, 2.537, 2.357, 1.286, 3.4, 2.323, 1.842, 0.132, 2.075, 2.064, 0.955, 1.12, 0.967, 2.548, 3.554, 3.747, 1.026, 2.324, 3.991, 0.488, 2.06, 1.354, 0.458] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 562.0, + "unit": "nm" + } } } ], @@ -9529,12 +9535,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 562.0, - "unit": "nm" - } } }, { @@ -9581,6 +9581,12 @@ [2.269, 0.974, 1.372, 3.438, 3.842, 0.312, 0.523, 2.389, 3.87, 1.678, 1.678, 3.009, 3.774, 2.298, 3.224, 1.804, 1.349, 0.377, 3.923, 1.891, 1.262, 3.767, 1.383, 3.853, 2.949, 3.344, 1.337, 0.919, 2.634, 2.528, 1.295, 2.526, 1.429, 2.078, 0.088, 0.311, 2.028, 2.885, 2.0, 3.819, 1.551, 3.674, 1.085, 3.441, 3.288, 3.538, 3.78, 1.449, 1.802, 0.519, 2.641] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } } } ], @@ -9590,12 +9596,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 565.0, - "unit": "nm" - } } }, { @@ -9642,6 +9642,12 @@ [0.11, 2.136, 3.462, 3.196, 2.501, 3.591, 1.518, 0.488, 0.497, 2.974, 3.603, 3.755, 1.341, 0.383, 3.151, 1.579, 1.695, 2.209, 2.913, 3.776, 2.464, 2.376, 0.103, 0.34, 1.588, 2.682, 1.941, 0.564, 3.411, 3.564, 3.887, 3.117, 2.114, 3.886, 1.184, 0.39, 1.967, 2.882, 1.587, 0.719, 0.509, 2.396, 1.502, 0.845, 1.947, 3.919, 3.743, 3.058, 0.136, 1.958, 2.084] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 566.0, + "unit": "nm" + } } } ], @@ -9651,12 +9657,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 566.0, - "unit": "nm" - } } }, { @@ -9703,6 +9703,12 @@ [3.239, 2.888, 0.743, 0.177, 1.733, 2.032, 3.122, 1.608, 3.818, 1.65, 0.954, 1.077, 0.932, 3.086, 0.486, 1.641, 1.455, 3.199, 2.761, 3.612, 2.813, 0.622, 2.193, 3.266, 0.067, 0.873, 3.258, 2.392, 1.668, 2.939, 2.882, 0.427, 1.452, 1.48, 0.648, 0.228, 1.371, 3.709, 3.45, 2.357, 2.844, 1.274, 1.768, 3.069, 3.555, 1.319, 0.57, 1.758, 1.461, 2.277, 2.287] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } } } ], @@ -9712,12 +9718,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 520.0, - "unit": "nm" - } } }, { @@ -9764,6 +9764,12 @@ [3.859, 1.375, 2.346, 3.27, 2.617, 0.695, 1.476, 0.109, 0.859, 2.773, 0.73, 3.939, 0.879, 2.767, 0.526, 3.625, 3.452, 2.438, 0.257, 0.27, 1.745, 3.748, 0.403, 0.768, 1.539, 2.854, 3.123, 3.711, 2.748, 0.303, 1.5, 0.93, 3.391, 0.651, 3.023, 3.052, 3.106, 2.209, 2.03, 3.533, 3.894, 3.599, 2.59, 3.583, 2.113, 1.335, 0.889, 0.302, 3.028, 1.694, 1.117] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 560.0, + "unit": "nm" + } } } ], @@ -9773,12 +9779,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 560.0, - "unit": "nm" - } } }, { @@ -9825,6 +9825,12 @@ [3.319, 1.204, 2.007, 0.541, 0.11, 0.971, 1.577, 1.731, 3.762, 1.571, 1.765, 1.36, 0.556, 1.273, 3.799, 0.547, 0.227, 3.743, 1.474, 0.518, 1.243, 0.407, 0.723, 0.375, 2.146, 1.158, 0.819, 2.654, 0.204, 1.965, 2.821, 0.682, 1.054, 3.186, 2.18, 3.726, 1.383, 0.109, 2.912, 2.08, 1.528, 0.478, 2.267, 1.962, 2.129, 2.239, 2.034, 2.309, 2.313, 0.787, 0.661] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 554.0, + "unit": "nm" + } } } ], @@ -9834,12 +9840,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 554.0, - "unit": "nm" - } } }, { @@ -9886,6 +9886,12 @@ [0.558, 1.554, 1.175, 3.873, 2.912, 0.48, 1.631, 2.395, 2.952, 0.152, 2.923, 1.526, 1.797, 2.75, 1.082, 0.305, 1.369, 3.093, 0.072, 3.164, 0.117, 0.831, 3.393, 2.99, 0.765, 2.139, 2.761, 2.246, 3.906, 3.123, 2.509, 0.34, 3.417, 1.303, 2.262, 3.128, 3.879, 3.313, 3.268, 3.246, 3.751, 1.713, 3.959, 1.928, 2.604, 2.951, 0.47, 3.212, 1.046, 1.933, 0.665] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 556.0, + "unit": "nm" + } } } ], @@ -9895,12 +9901,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 556.0, - "unit": "nm" - } } }, { @@ -9947,6 +9947,12 @@ [3.216, 2.241, 1.622, 0.544, 3.727, 2.16, 2.184, 3.108, 0.772, 1.719, 3.384, 2.488, 3.828, 1.642, 2.582, 2.108, 0.494, 0.487, 1.954, 0.425, 2.055, 3.825, 0.826, 3.412, 2.403, 0.871, 1.465, 0.385, 1.813, 1.669, 3.548, 1.199, 1.973, 2.458, 3.293, 2.099, 1.794, 0.759, 2.535, 0.967, 1.695, 0.205, 2.495, 1.526, 0.367, 3.225, 0.131, 0.285, 0.022, 0.842, 3.975] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } } } ], @@ -9956,12 +9962,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 570.0, - "unit": "nm" - } } }, { @@ -10008,6 +10008,12 @@ [2.724, 3.092, 1.507, 2.609, 3.39, 1.414, 2.21, 2.14, 2.855, 0.695, 1.798, 1.294, 3.102, 2.17, 2.185, 0.515, 1.37, 2.348, 0.483, 0.314, 3.735, 1.952, 0.986, 2.73, 1.85, 1.329, 3.299, 3.045, 3.178, 0.74, 1.179, 0.363, 0.97, 1.694, 0.823, 2.107, 0.465, 3.848, 3.902, 0.685, 3.584, 2.618, 3.68, 0.272, 3.896, 2.911, 3.393, 3.355, 2.182, 2.709, 2.761] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } } } ], @@ -10017,12 +10023,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 561.0, - "unit": "nm" - } } }, { @@ -10069,6 +10069,12 @@ [1.936, 3.539, 0.528, 0.24, 0.772, 2.106, 2.777, 0.759, 2.061, 2.114, 3.164, 2.961, 2.114, 3.515, 1.435, 0.323, 1.408, 1.347, 0.077, 0.049, 1.521, 2.446, 3.797, 0.729, 1.116, 2.271, 0.714, 2.833, 2.938, 1.936, 3.944, 0.863, 0.469, 1.979, 3.242, 0.824, 0.442, 1.453, 0.05, 0.0, 1.688, 3.089, 1.841, 2.571, 0.419, 3.656, 1.565, 0.756, 2.461, 2.587, 1.985] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } } } ], @@ -10078,12 +10084,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 549.0, - "unit": "nm" - } } }, { @@ -10130,6 +10130,12 @@ [2.008, 2.104, 2.659, 1.239, 3.49, 3.741, 3.799, 3.123, 2.5, 1.391, 3.943, 1.82, 0.124, 2.17, 2.301, 2.492, 0.135, 0.272, 0.611, 3.881, 3.954, 1.296, 0.076, 2.361, 2.432, 0.604, 1.226, 0.31, 1.46, 0.706, 3.957, 0.372, 0.351, 3.95, 1.935, 2.759, 1.809, 0.739, 3.752, 1.082, 0.643, 2.33, 1.549, 2.609, 1.745, 1.268, 1.716, 0.4, 2.117, 1.164, 1.43] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -10139,12 +10145,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -10191,6 +10191,12 @@ [0.484, 1.85, 2.705, 2.03, 0.711, 2.027, 0.298, 2.807, 2.886, 2.514, 3.488, 1.662, 1.794, 1.433, 3.571, 1.469, 0.173, 0.234, 3.542, 0.682, 3.395, 0.52, 3.528, 3.238, 1.623, 3.746, 1.467, 0.615, 1.163, 2.887, 0.825, 2.192, 0.296, 3.276, 3.473, 2.521, 1.645, 1.919, 1.224, 0.732, 1.511, 1.932, 0.866, 2.567, 1.154, 0.667, 3.755, 1.175, 2.174, 3.799, 1.542] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 554.0, + "unit": "nm" + } } } ], @@ -10200,12 +10206,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 554.0, - "unit": "nm" - } } }, { @@ -10252,6 +10252,12 @@ [0.166, 2.575, 0.481, 2.035, 3.963, 2.321, 3.467, 0.407, 0.964, 0.559, 3.682, 1.643, 3.998, 1.689, 1.296, 1.366, 2.518, 1.96, 1.049, 3.823, 2.254, 3.01, 2.81, 3.17, 1.463, 3.653, 0.961, 2.084, 0.956, 3.991, 0.292, 2.441, 1.364, 1.344, 0.659, 3.616, 3.814, 1.24, 3.509, 0.199, 2.178, 1.512, 0.259, 0.172, 1.829, 0.288, 0.867, 0.878, 3.857, 3.3, 1.236] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -10261,12 +10267,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -10313,6 +10313,12 @@ [3.215, 1.124, 3.975, 3.288, 1.156, 3.765, 1.31, 0.571, 0.31, 1.36, 1.383, 3.451, 0.972, 0.267, 1.24, 0.279, 2.653, 1.029, 1.68, 1.551, 1.277, 2.45, 0.849, 1.645, 0.741, 2.751, 2.637, 1.34, 1.175, 2.785, 0.082, 2.227, 1.655, 2.754, 1.076, 1.317, 1.388, 2.055, 3.503, 3.851, 2.504, 0.668, 3.199, 2.838, 0.795, 2.061, 3.286, 3.905, 0.589, 0.008, 2.214] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } } } ], @@ -10322,12 +10328,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 559.0, - "unit": "nm" - } } }, { @@ -10374,6 +10374,12 @@ [3.848, 2.176, 1.749, 3.959, 0.764, 0.274, 2.33, 2.547, 2.405, 1.127, 3.969, 3.396, 1.524, 1.278, 3.156, 1.796, 2.218, 3.19, 3.923, 2.89, 0.597, 1.526, 1.829, 3.047, 0.608, 3.25, 2.011, 0.85, 2.68, 3.464, 2.731, 0.751, 1.166, 0.571, 0.233, 0.05, 3.905, 2.795, 0.311, 1.042, 3.058, 3.508, 1.098, 2.723, 2.534, 1.272, 1.675, 1.56, 1.638, 0.265, 1.068] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 538.0, + "unit": "nm" + } } } ], @@ -10383,12 +10389,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 538.0, - "unit": "nm" - } } }, { @@ -10435,6 +10435,12 @@ [0.715, 0.666, 1.117, 1.616, 2.322, 0.347, 2.701, 3.35, 1.514, 2.263, 1.48, 3.867, 2.94, 2.395, 3.218, 2.23, 0.952, 1.044, 3.106, 1.89, 3.422, 2.878, 2.88, 3.832, 1.089, 0.428, 3.105, 0.512, 3.336, 1.575, 0.45, 3.211, 2.415, 2.396, 2.016, 0.085, 0.048, 2.955, 1.911, 3.702, 1.204, 3.444, 2.797, 2.778, 1.577, 3.641, 2.158, 0.327, 3.316, 3.042, 0.723] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } } } ], @@ -10444,12 +10450,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 542.0, - "unit": "nm" - } } }, { @@ -10496,6 +10496,12 @@ [0.516, 2.532, 2.374, 1.645, 1.836, 1.785, 1.285, 0.526, 1.893, 1.241, 2.188, 0.014, 3.939, 1.813, 2.269, 1.452, 0.543, 0.379, 3.132, 2.181, 1.996, 3.132, 3.403, 0.686, 3.977, 0.08, 0.102, 2.254, 1.448, 2.27, 2.778, 1.196, 0.294, 0.851, 3.934, 0.678, 0.04, 0.75, 0.179, 2.3, 2.763, 2.429, 0.017, 2.46, 3.015, 3.43, 2.858, 0.965, 3.308, 2.189, 1.614] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } } } ], @@ -10505,12 +10511,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 565.0, - "unit": "nm" - } } }, { @@ -10557,6 +10557,12 @@ [3.948, 0.184, 0.86, 2.726, 1.383, 3.129, 1.688, 1.667, 1.756, 1.683, 3.03, 3.078, 3.623, 2.463, 0.992, 3.72, 3.087, 1.878, 1.591, 1.411, 3.792, 0.199, 0.832, 3.418, 3.567, 3.114, 0.943, 1.671, 0.547, 1.222, 3.136, 2.946, 3.258, 0.655, 2.83, 1.012, 3.433, 2.125, 2.55, 1.548, 2.351, 3.082, 2.423, 0.616, 3.732, 3.35, 0.394, 3.996, 2.022, 3.709, 3.771] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } } } ], @@ -10566,12 +10572,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 544.0, - "unit": "nm" - } } }, { @@ -10618,6 +10618,12 @@ [3.087, 1.717, 0.777, 1.821, 3.749, 3.351, 1.442, 3.159, 2.268, 2.185, 0.017, 1.12, 0.534, 2.547, 0.084, 3.819, 2.967, 3.633, 3.98, 0.286, 0.962, 3.327, 0.042, 3.059, 0.709, 1.775, 0.215, 3.685, 0.216, 2.72, 0.946, 3.648, 0.838, 1.45, 0.049, 1.229, 2.481, 2.834, 3.08, 1.66, 1.991, 2.965, 0.282, 3.362, 2.334, 1.962, 1.889, 2.069, 3.648, 3.531, 1.426] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } } } ], @@ -10627,12 +10633,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } } }, { @@ -10679,6 +10679,12 @@ [0.363, 2.042, 3.422, 2.809, 3.759, 1.675, 1.717, 1.111, 1.973, 3.135, 1.757, 2.943, 3.548, 1.239, 0.368, 0.282, 3.083, 2.498, 2.855, 1.338, 0.133, 0.552, 2.319, 2.295, 1.996, 3.045, 0.679, 0.724, 2.747, 3.886, 2.145, 0.036, 0.685, 1.293, 0.583, 1.606, 1.415, 2.641, 0.289, 3.554, 0.763, 1.722, 1.107, 2.524, 0.234, 0.022, 0.733, 2.123, 1.965, 1.68, 2.805] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 523.0, + "unit": "nm" + } } } ], @@ -10688,12 +10694,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 523.0, - "unit": "nm" - } } }, { @@ -10740,6 +10740,12 @@ [3.571, 0.793, 2.192, 1.293, 3.81, 3.722, 1.127, 0.812, 0.714, 0.995, 0.992, 2.364, 2.086, 0.99, 1.72, 2.258, 2.255, 0.656, 2.762, 2.866, 0.442, 2.208, 3.3, 0.575, 2.41, 3.444, 3.794, 2.061, 1.974, 2.312, 2.555, 2.759, 1.066, 1.08, 2.574, 3.243, 2.492, 0.0, 0.772, 1.883, 0.288, 1.828, 3.575, 2.558, 3.77, 3.358, 3.02, 1.534, 2.514, 1.763, 2.478] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } } } ], @@ -10749,12 +10755,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 565.0, - "unit": "nm" - } } }, { @@ -10801,6 +10801,12 @@ [1.466, 3.203, 2.813, 2.363, 1.363, 1.492, 1.617, 2.882, 0.365, 3.927, 3.065, 2.838, 2.402, 2.44, 2.233, 1.298, 1.006, 2.415, 2.476, 3.765, 2.255, 3.884, 0.879, 2.578, 2.613, 2.633, 0.742, 0.805, 3.052, 0.424, 2.26, 3.547, 0.21, 3.833, 1.088, 3.555, 2.252, 2.717, 1.211, 1.75, 0.875, 1.117, 0.406, 1.955, 1.222, 2.99, 1.173, 0.118, 1.536, 2.059, 2.014] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 530.0, + "unit": "nm" + } } } ], @@ -10810,12 +10816,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 530.0, - "unit": "nm" - } } }, { @@ -10862,6 +10862,12 @@ [3.118, 0.037, 1.998, 0.223, 1.582, 2.324, 0.235, 3.749, 2.729, 0.749, 0.812, 3.829, 3.941, 1.667, 3.518, 2.627, 2.568, 1.351, 2.678, 3.045, 2.288, 1.204, 0.725, 2.889, 1.137, 3.477, 2.923, 1.356, 3.623, 1.46, 0.624, 3.268, 0.992, 2.409, 3.141, 3.51, 2.212, 3.61, 3.505, 1.231, 2.017, 2.967, 2.481, 1.001, 0.063, 1.287, 0.465, 0.288, 1.704, 0.362, 2.604] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -10871,12 +10877,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -10923,6 +10923,12 @@ [2.766, 2.857, 3.014, 3.725, 1.914, 3.311, 3.108, 3.085, 2.105, 3.401, 2.879, 0.126, 1.269, 0.125, 1.543, 2.836, 1.532, 2.526, 0.007, 0.415, 2.957, 1.845, 1.447, 1.027, 3.321, 2.723, 3.724, 2.826, 3.849, 3.012, 2.635, 3.651, 3.26, 2.855, 1.857, 0.41, 1.978, 2.683, 1.227, 0.198, 3.103, 0.525, 1.4, 1.83, 3.138, 2.84, 1.211, 0.875, 2.52, 2.45, 2.932] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } } } ], @@ -10932,12 +10938,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } } }, { @@ -10984,6 +10984,12 @@ [1.762, 1.696, 3.947, 3.647, 0.921, 1.41, 1.986, 0.404, 3.19, 3.586, 0.282, 3.235, 3.093, 0.766, 3.227, 0.866, 2.414, 2.267, 1.132, 0.858, 2.848, 1.298, 3.809, 1.312, 2.432, 0.444, 3.617, 1.889, 0.481, 1.511, 2.848, 0.306, 1.399, 0.079, 0.872, 1.955, 3.313, 3.208, 0.935, 3.0, 3.991, 2.279, 2.036, 0.612, 2.821, 1.289, 2.307, 1.063, 3.91, 1.974, 2.797] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 522.0, + "unit": "nm" + } } } ], @@ -10993,12 +10999,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 522.0, - "unit": "nm" - } } }, { @@ -11045,6 +11045,12 @@ [2.608, 1.387, 1.592, 0.084, 0.463, 1.887, 2.635, 1.214, 0.476, 1.793, 0.097, 3.923, 1.678, 0.737, 3.975, 1.836, 3.013, 3.893, 1.272, 1.553, 3.206, 1.331, 2.132, 0.867, 0.569, 3.261, 3.196, 2.49, 1.142, 2.137, 2.553, 1.978, 2.506, 2.714, 0.24, 2.919, 3.807, 3.995, 0.409, 0.068, 0.678, 1.993, 0.459, 1.206, 3.894, 2.356, 0.358, 3.874, 2.845, 3.453, 3.293] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 556.0, + "unit": "nm" + } } } ], @@ -11054,12 +11060,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 556.0, - "unit": "nm" - } } }, { @@ -11106,6 +11106,12 @@ [1.17, 2.638, 0.421, 3.59, 1.276, 3.255, 0.724, 3.514, 1.201, 2.69, 0.144, 0.072, 2.339, 3.24, 2.118, 1.416, 2.964, 0.497, 1.056, 2.029, 3.018, 3.483, 1.204, 0.874, 1.213, 0.872, 0.925, 0.973, 2.213, 2.903, 3.322, 3.645, 1.689, 2.843, 1.382, 3.34, 2.085, 3.123, 2.963, 3.663, 3.082, 0.48, 3.208, 1.377, 0.533, 1.92, 2.119, 1.966, 1.775, 0.939, 1.393] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } } } ], @@ -11115,12 +11121,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 559.0, - "unit": "nm" - } } }, { @@ -11167,6 +11167,12 @@ [3.377, 1.789, 1.423, 0.275, 1.687, 1.434, 3.546, 2.377, 0.404, 2.329, 3.751, 1.301, 2.297, 3.368, 0.499, 2.382, 3.495, 1.857, 2.778, 3.33, 3.84, 1.533, 1.392, 2.947, 2.537, 0.275, 3.826, 0.341, 3.292, 2.753, 2.959, 3.197, 1.273, 1.51, 3.945, 1.855, 0.265, 2.567, 3.695, 1.905, 2.539, 0.746, 2.559, 1.334, 3.331, 3.179, 0.91, 2.008, 0.034, 3.538, 2.623] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } } } ], @@ -11176,12 +11182,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } } }, { @@ -11228,6 +11228,12 @@ [0.108, 2.997, 1.609, 1.553, 1.843, 0.396, 2.476, 1.738, 1.411, 1.607, 3.204, 3.085, 1.651, 3.37, 0.553, 0.027, 0.787, 3.423, 2.643, 2.116, 0.928, 2.162, 0.872, 0.791, 3.093, 2.974, 0.058, 3.616, 3.357, 3.364, 1.817, 0.307, 3.753, 0.129, 2.85, 0.2, 3.664, 3.956, 2.102, 1.459, 1.789, 0.829, 2.283, 0.297, 3.334, 1.66, 0.908, 1.964, 2.777, 3.151, 0.122] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } } } ], @@ -11237,12 +11243,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 548.0, - "unit": "nm" - } } }, { @@ -11289,6 +11289,12 @@ [2.585, 1.39, 1.421, 1.695, 1.946, 2.124, 0.817, 2.459, 2.868, 0.338, 2.86, 2.38, 2.046, 3.79, 2.897, 3.331, 1.521, 0.52, 0.353, 0.363, 0.831, 1.321, 1.183, 0.327, 0.098, 3.879, 0.575, 1.457, 1.432, 2.066, 2.094, 0.838, 0.206, 3.242, 3.232, 2.916, 2.332, 2.433, 0.904, 2.075, 2.846, 1.496, 3.233, 1.121, 2.928, 2.448, 0.236, 0.507, 0.436, 2.329, 3.386] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -11298,12 +11304,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -11350,6 +11350,12 @@ [1.443, 2.423, 2.787, 3.291, 1.264, 0.206, 1.094, 1.596, 2.066, 1.549, 3.36, 1.026, 0.801, 2.243, 2.021, 2.174, 2.804, 0.558, 3.98, 0.999, 3.087, 3.615, 2.278, 1.517, 3.334, 2.087, 0.062, 1.398, 1.65, 3.643, 0.068, 1.02, 3.103, 2.68, 0.65, 2.415, 1.418, 3.95, 1.967, 2.71, 1.238, 0.837, 2.837, 0.526, 3.485, 0.47, 2.431, 2.877, 0.907, 0.273, 1.431] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -11359,12 +11365,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -11411,6 +11411,12 @@ [3.949, 0.456, 1.33, 0.298, 1.827, 0.145, 1.27, 3.957, 3.177, 0.144, 3.695, 3.946, 2.423, 1.48, 2.34, 1.923, 2.121, 1.593, 3.606, 0.756, 2.854, 2.59, 1.27, 3.76, 2.25, 0.778, 1.751, 2.031, 2.864, 3.655, 1.184, 0.491, 1.376, 2.211, 0.119, 0.564, 1.772, 2.381, 2.822, 2.269, 0.147, 3.992, 2.79, 2.566, 1.542, 0.891, 0.413, 3.045, 1.145, 2.546, 0.31] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -11420,12 +11426,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -11472,6 +11472,12 @@ [1.284, 1.3, 3.517, 2.576, 1.358, 3.185, 1.569, 2.048, 1.049, 2.393, 3.238, 1.093, 3.521, 2.959, 3.204, 2.569, 0.211, 1.361, 1.776, 0.15, 3.74, 2.77, 1.336, 0.608, 2.862, 3.8, 2.704, 2.218, 1.359, 0.365, 2.706, 0.886, 0.317, 3.345, 3.9, 3.19, 1.859, 3.635, 2.76, 1.378, 0.203, 0.332, 1.773, 3.876, 0.909, 2.899, 3.268, 3.606, 2.338, 2.322, 0.201] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 554.0, + "unit": "nm" + } } } ], @@ -11481,12 +11487,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 554.0, - "unit": "nm" - } } }, { @@ -11533,6 +11533,12 @@ [1.684, 3.369, 2.396, 0.569, 2.513, 3.964, 2.908, 3.714, 1.558, 0.481, 3.35, 0.689, 0.684, 3.687, 2.352, 0.775, 0.176, 3.059, 0.013, 0.709, 0.576, 2.6, 0.397, 3.946, 3.407, 0.997, 1.46, 3.699, 3.962, 0.531, 3.097, 3.88, 3.036, 0.163, 1.022, 1.516, 1.92, 2.776, 1.386, 3.226, 2.95, 3.92, 1.202, 0.897, 0.852, 3.643, 1.088, 0.189, 2.556, 2.123, 3.092] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } } } ], @@ -11542,12 +11548,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 551.0, - "unit": "nm" - } } }, { @@ -11594,6 +11594,12 @@ [0.547, 2.324, 1.612, 3.625, 3.083, 2.971, 2.449, 1.161, 1.515, 2.503, 3.209, 3.751, 1.026, 1.383, 3.47, 1.652, 0.521, 2.665, 0.835, 2.855, 1.4, 1.672, 0.786, 1.759, 0.655, 1.398, 3.499, 3.094, 3.764, 3.909, 1.27, 1.143, 1.839, 1.438, 2.55, 1.555, 1.424, 0.538, 1.938, 2.545, 3.471, 1.614, 3.87, 0.722, 3.741, 0.169, 0.175, 3.514, 1.382, 1.991, 0.567] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } } } ], @@ -11603,12 +11609,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 548.0, - "unit": "nm" - } } }, { @@ -11655,6 +11655,12 @@ [1.524, 1.72, 3.268, 1.692, 2.874, 1.537, 3.853, 2.969, 1.684, 3.471, 3.355, 1.397, 1.606, 1.233, 2.066, 1.912, 3.588, 2.832, 1.914, 0.227, 3.982, 0.726, 2.29, 3.383, 3.785, 1.801, 0.064, 2.017, 0.486, 1.222, 3.985, 1.712, 1.772, 3.341, 3.746, 3.422, 2.571, 3.746, 3.675, 0.018, 1.571, 1.568, 0.253, 3.073, 0.115, 0.216, 2.264, 3.489, 1.675, 2.257, 0.587] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 554.0, + "unit": "nm" + } } } ], @@ -11664,12 +11670,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 554.0, - "unit": "nm" - } } }, { @@ -11716,6 +11716,12 @@ [0.681, 3.467, 1.763, 0.584, 0.797, 3.43, 3.884, 1.906, 1.072, 1.473, 1.835, 2.482, 0.462, 3.486, 1.643, 3.624, 2.265, 1.486, 2.643, 3.341, 3.841, 3.156, 1.896, 2.655, 2.413, 0.472, 3.217, 3.268, 3.569, 3.537, 0.574, 0.342, 2.229, 0.635, 3.303, 2.244, 0.009, 2.756, 2.949, 3.992, 2.686, 1.839, 2.603, 2.544, 3.736, 3.085, 3.791, 3.587, 2.472, 0.591, 3.998] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } } } ], @@ -11725,12 +11731,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 548.0, - "unit": "nm" - } } }, { @@ -11777,6 +11777,12 @@ [2.003, 3.031, 2.916, 0.745, 1.525, 1.571, 3.107, 2.17, 0.325, 0.213, 0.616, 2.337, 1.534, 0.898, 1.492, 0.253, 3.826, 0.182, 3.398, 3.615, 3.508, 2.537, 2.651, 0.654, 2.002, 0.553, 3.351, 2.919, 3.327, 0.68, 3.629, 0.795, 2.977, 3.539, 2.571, 1.311, 3.313, 3.89, 1.778, 0.673, 0.901, 0.585, 2.623, 3.778, 2.069, 3.502, 1.068, 1.646, 2.243, 2.832, 3.965] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } } } ], @@ -11786,12 +11792,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 570.0, - "unit": "nm" - } } }, { @@ -11838,6 +11838,12 @@ [3.404, 3.073, 0.975, 0.49, 3.466, 0.379, 2.261, 2.743, 0.972, 2.22, 0.188, 2.842, 3.644, 0.583, 3.82, 3.359, 1.995, 2.327, 0.181, 0.94, 3.936, 2.404, 2.725, 2.714, 2.923, 3.913, 2.872, 2.584, 2.5, 3.484, 1.705, 0.675, 0.495, 0.715, 0.225, 1.722, 2.001, 3.048, 3.104, 0.931, 1.051, 1.147, 0.805, 2.453, 0.713, 1.742, 2.978, 3.195, 2.249, 0.142, 3.072] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } } } ], @@ -11847,12 +11853,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 520.0, - "unit": "nm" - } } }, { @@ -11899,6 +11899,12 @@ [3.318, 2.062, 1.892, 0.028, 0.999, 0.347, 2.261, 1.566, 3.552, 1.506, 3.676, 0.242, 1.487, 0.514, 3.512, 2.347, 2.929, 0.357, 2.098, 1.358, 2.946, 3.222, 3.249, 3.888, 2.789, 1.599, 0.272, 2.001, 1.18, 0.934, 3.677, 0.335, 2.357, 0.412, 2.386, 2.613, 2.603, 0.686, 3.226, 1.374, 3.74, 1.481, 3.551, 3.425, 1.375, 0.904, 3.318, 1.938, 1.2, 3.395, 0.049] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -11908,12 +11914,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -11960,6 +11960,12 @@ [2.838, 0.15, 2.784, 0.125, 0.095, 2.812, 2.003, 1.238, 3.4, 0.075, 0.26, 0.386, 2.618, 1.829, 3.341, 1.885, 1.075, 2.128, 0.898, 3.743, 2.242, 1.131, 0.724, 1.618, 1.464, 3.671, 3.824, 2.513, 1.885, 2.28, 2.334, 0.8, 1.784, 0.885, 0.838, 0.185, 3.573, 0.286, 2.291, 3.801, 0.599, 3.447, 3.825, 1.298, 3.479, 1.095, 0.933, 1.596, 2.033, 3.018, 2.243] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 546.0, + "unit": "nm" + } } } ], @@ -11969,12 +11975,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 546.0, - "unit": "nm" - } } }, { @@ -12021,6 +12021,12 @@ [3.809, 0.302, 3.651, 1.806, 1.707, 3.425, 1.166, 2.66, 0.424, 2.988, 3.49, 3.353, 1.119, 1.741, 3.46, 2.601, 1.732, 0.99, 3.155, 2.312, 0.788, 3.836, 1.097, 3.144, 2.794, 1.305, 3.426, 2.138, 0.369, 2.737, 2.227, 0.479, 2.866, 0.037, 2.524, 0.497, 2.133, 3.079, 3.131, 0.76, 2.406, 1.625, 1.867, 0.812, 1.109, 0.094, 2.706, 3.557, 0.018, 2.493, 3.201] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 530.0, + "unit": "nm" + } } } ], @@ -12030,12 +12036,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 530.0, - "unit": "nm" - } } }, { @@ -12082,6 +12082,12 @@ [0.605, 2.878, 0.706, 1.454, 3.973, 3.204, 0.507, 3.011, 0.401, 3.999, 3.027, 2.291, 1.687, 0.76, 3.01, 0.486, 1.082, 3.216, 2.962, 0.468, 2.652, 1.858, 2.395, 3.905, 3.162, 1.969, 0.285, 2.034, 2.7, 2.599, 3.869, 2.119, 1.876, 3.535, 1.622, 1.601, 2.159, 2.582, 2.551, 1.292, 1.625, 0.068, 2.73, 0.76, 3.378, 3.334, 0.179, 0.051, 2.099, 3.607, 1.623] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -12091,12 +12097,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -12143,6 +12143,12 @@ [0.34, 1.055, 2.024, 0.548, 2.746, 0.482, 0.801, 2.291, 2.003, 2.919, 2.473, 0.31, 1.802, 0.13, 0.908, 0.414, 2.151, 3.138, 1.409, 2.327, 2.499, 0.665, 1.67, 2.842, 2.584, 3.128, 1.634, 0.526, 3.828, 1.79, 0.233, 3.934, 3.092, 0.975, 3.528, 1.063, 3.851, 2.986, 2.875, 1.118, 1.358, 0.29, 0.547, 2.372, 3.152, 3.757, 0.928, 0.63, 2.47, 2.919, 2.027] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } } } ], @@ -12152,12 +12158,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } } }, { @@ -12204,6 +12204,12 @@ [0.913, 0.69, 1.28, 3.123, 3.674, 3.385, 3.181, 1.964, 3.618, 2.848, 0.275, 2.463, 0.213, 2.686, 2.538, 1.217, 0.826, 0.601, 3.844, 0.563, 3.165, 0.262, 0.291, 0.969, 2.208, 0.117, 3.297, 3.69, 2.827, 2.2, 1.003, 2.055, 0.908, 3.762, 3.32, 3.244, 1.812, 1.851, 3.854, 1.678, 0.669, 1.022, 3.257, 2.269, 1.082, 1.827, 0.334, 3.686, 0.613, 2.539, 0.101] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 554.0, + "unit": "nm" + } } } ], @@ -12213,12 +12219,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 554.0, - "unit": "nm" - } } }, { @@ -12265,6 +12265,12 @@ [0.029, 2.626, 2.356, 2.862, 0.65, 0.398, 0.311, 0.914, 3.556, 0.088, 3.491, 3.136, 1.417, 1.844, 2.219, 1.554, 0.451, 3.366, 3.293, 3.405, 2.974, 0.746, 2.166, 3.893, 2.142, 1.005, 2.021, 3.886, 0.381, 3.782, 3.611, 3.076, 0.287, 2.099, 0.974, 3.429, 2.552, 0.899, 2.669, 2.845, 1.501, 0.937, 0.297, 1.589, 1.178, 1.886, 1.84, 0.424, 2.863, 0.273, 3.883] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } } } ], @@ -12274,12 +12280,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 550.0, - "unit": "nm" - } } }, { @@ -12326,6 +12326,12 @@ [0.319, 1.32, 3.133, 1.127, 3.282, 0.46, 2.463, 0.72, 3.645, 2.377, 0.425, 0.533, 3.773, 0.477, 0.414, 2.848, 3.318, 0.87, 2.79, 3.001, 3.551, 0.697, 0.447, 1.904, 2.037, 0.449, 0.576, 2.714, 0.256, 3.165, 1.596, 1.023, 0.108, 3.899, 3.291, 1.756, 1.154, 0.971, 1.691, 2.968, 0.089, 0.178, 3.023, 0.468, 1.076, 0.403, 0.523, 1.112, 0.763, 3.037, 2.521] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } } } ], @@ -12335,12 +12341,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } } }, { @@ -12387,6 +12387,12 @@ [3.554, 0.072, 1.271, 0.331, 3.622, 0.872, 1.229, 3.089, 2.833, 3.883, 3.748, 0.464, 0.48, 0.78, 3.401, 0.424, 3.874, 1.185, 2.658, 1.694, 2.346, 3.178, 3.821, 2.912, 3.373, 1.673, 3.979, 0.828, 1.633, 3.925, 3.463, 1.95, 1.218, 0.643, 2.042, 0.95, 2.837, 3.567, 3.668, 0.883, 3.924, 1.882, 2.858, 3.084, 0.341, 3.714, 2.543, 3.687, 1.674, 3.979, 0.649] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } } } ], @@ -12396,12 +12402,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 529.0, - "unit": "nm" - } } }, { @@ -12448,6 +12448,12 @@ [3.927, 2.105, 1.342, 0.174, 0.375, 0.251, 2.359, 0.958, 1.949, 0.892, 0.401, 1.456, 2.907, 0.42, 1.797, 3.245, 3.837, 2.738, 2.451, 1.587, 0.306, 1.517, 1.774, 1.769, 0.464, 0.32, 0.736, 2.571, 3.658, 3.13, 0.291, 3.154, 1.654, 3.276, 3.536, 3.845, 3.875, 0.468, 1.666, 0.698, 0.478, 2.609, 1.718, 3.99, 3.523, 0.425, 3.951, 2.664, 2.543, 0.469, 2.706] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } } } ], @@ -12457,12 +12463,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } } }, { @@ -12509,6 +12509,12 @@ [0.948, 3.222, 2.391, 0.342, 2.409, 0.33, 3.572, 3.71, 0.055, 3.514, 3.788, 1.299, 2.819, 0.601, 1.247, 3.801, 3.63, 0.884, 1.952, 3.369, 3.368, 1.072, 1.752, 1.109, 1.696, 3.798, 1.783, 2.246, 0.038, 0.369, 2.072, 0.027, 3.188, 0.424, 3.343, 3.931, 3.263, 2.933, 1.126, 3.514, 0.303, 0.758, 1.611, 1.184, 0.689, 1.309, 2.899, 3.389, 2.276, 0.624, 0.32] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } } } ], @@ -12518,12 +12524,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } } }, { @@ -12570,6 +12570,12 @@ [1.78, 0.59, 1.1, 3.337, 3.876, 1.469, 1.281, 2.646, 2.611, 2.547, 1.326, 3.671, 3.686, 1.442, 3.76, 2.111, 2.395, 1.257, 1.315, 0.538, 0.697, 3.757, 2.438, 3.066, 2.609, 3.461, 0.568, 0.419, 0.387, 0.899, 2.393, 3.97, 3.414, 0.048, 0.291, 3.437, 2.088, 1.086, 3.467, 2.461, 1.981, 0.287, 2.515, 0.967, 2.976, 1.087, 1.925, 3.741, 0.929, 3.198, 0.504] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } } } ], @@ -12579,12 +12585,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 551.0, - "unit": "nm" - } } }, { @@ -12631,6 +12631,12 @@ [2.132, 0.961, 0.085, 3.622, 2.022, 2.152, 2.034, 0.728, 0.414, 0.901, 0.862, 2.258, 1.711, 0.153, 1.356, 0.257, 3.637, 1.15, 0.322, 0.023, 1.309, 1.79, 2.853, 2.557, 0.409, 1.242, 1.47, 0.089, 1.522, 1.536, 0.826, 3.49, 1.188, 0.395, 0.261, 3.009, 3.329, 0.425, 2.269, 1.285, 0.053, 0.357, 3.052, 1.56, 1.119, 2.028, 0.803, 0.814, 1.62, 0.829, 2.287] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 524.0, + "unit": "nm" + } } } ], @@ -12640,12 +12646,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 524.0, - "unit": "nm" - } } }, { @@ -12692,6 +12692,12 @@ [2.591, 0.606, 3.175, 3.194, 0.341, 2.107, 1.528, 3.212, 0.78, 0.681, 1.945, 3.205, 2.878, 0.074, 1.372, 1.069, 1.316, 3.891, 2.346, 0.927, 3.211, 2.881, 3.037, 3.969, 0.951, 2.738, 1.292, 1.438, 2.381, 0.438, 0.656, 2.468, 0.692, 3.248, 2.235, 2.883, 2.013, 1.2, 3.919, 0.901, 1.8, 1.212, 1.489, 0.603, 2.108, 1.152, 0.173, 1.486, 3.747, 0.958, 3.487] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } } } ], @@ -12701,12 +12707,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 542.0, - "unit": "nm" - } } }, { @@ -12753,6 +12753,12 @@ [0.922, 3.273, 3.902, 3.076, 3.709, 1.569, 3.205, 2.243, 1.603, 0.815, 0.089, 0.831, 0.341, 0.024, 3.476, 2.513, 3.63, 1.838, 2.489, 3.056, 0.115, 3.971, 1.445, 3.126, 1.998, 1.391, 2.433, 1.86, 3.798, 2.565, 3.806, 1.691, 1.422, 0.95, 3.734, 3.195, 0.79, 0.172, 2.525, 1.313, 2.807, 2.956, 2.316, 0.086, 1.711, 0.381, 1.147, 0.579, 2.632, 2.639, 0.543] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 523.0, + "unit": "nm" + } } } ], @@ -12762,12 +12768,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 523.0, - "unit": "nm" - } } }, { @@ -12814,6 +12814,12 @@ [3.647, 1.258, 1.902, 3.371, 0.95, 1.828, 0.775, 1.077, 2.318, 3.135, 1.344, 2.444, 3.038, 1.008, 2.398, 3.408, 3.39, 0.29, 0.28, 1.722, 3.458, 3.313, 1.175, 0.248, 1.159, 1.654, 1.359, 1.415, 1.617, 0.244, 1.854, 3.228, 1.159, 2.021, 0.159, 0.433, 3.52, 1.579, 2.783, 1.367, 0.015, 3.094, 0.207, 2.177, 1.463, 0.511, 3.278, 3.077, 3.312, 0.972, 1.756] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 567.0, + "unit": "nm" + } } } ], @@ -12823,12 +12829,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 567.0, - "unit": "nm" - } } }, { @@ -12875,6 +12875,12 @@ [0.288, 2.351, 0.916, 1.084, 0.333, 0.082, 1.654, 2.212, 3.295, 0.469, 3.359, 3.46, 2.073, 1.281, 2.116, 1.285, 1.016, 0.848, 1.965, 3.888, 1.811, 1.507, 2.913, 1.707, 0.363, 3.105, 2.997, 2.785, 0.647, 2.376, 2.281, 2.103, 0.644, 2.488, 1.565, 0.876, 0.243, 0.936, 3.825, 0.35, 1.866, 3.367, 3.487, 0.897, 0.656, 3.633, 2.134, 0.896, 3.346, 3.226, 2.262] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -12884,12 +12890,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -12936,6 +12936,12 @@ [2.229, 1.346, 1.084, 3.944, 2.781, 3.437, 3.209, 0.721, 1.228, 1.084, 2.869, 1.564, 0.919, 2.187, 1.255, 2.816, 3.584, 3.715, 1.239, 1.042, 0.079, 1.023, 1.615, 2.022, 2.444, 2.019, 2.015, 1.051, 0.729, 0.971, 2.101, 3.438, 1.42, 0.113, 0.051, 0.756, 3.56, 2.543, 2.784, 1.439, 1.033, 0.215, 2.597, 3.265, 2.997, 1.802, 2.567, 2.71, 3.4, 0.817, 2.549] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } } } ], @@ -12945,12 +12951,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 536.0, - "unit": "nm" - } } }, { @@ -12997,6 +12997,12 @@ [1.18, 2.106, 2.184, 2.183, 1.206, 3.731, 3.062, 1.5, 0.761, 1.421, 2.158, 3.991, 0.256, 2.983, 3.43, 0.144, 0.806, 2.135, 0.498, 3.255, 1.041, 0.93, 3.8, 0.008, 3.863, 2.425, 2.349, 3.024, 0.642, 3.452, 3.305, 1.65, 3.912, 2.422, 0.92, 1.332, 3.235, 1.929, 2.845, 1.025, 0.498, 1.043, 2.023, 0.017, 2.875, 0.224, 2.34, 0.281, 3.566, 1.657, 1.76] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } } } ], @@ -13006,12 +13012,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 526.0, - "unit": "nm" - } } }, { @@ -13058,6 +13058,12 @@ [0.574, 2.901, 1.561, 1.507, 0.249, 2.306, 2.176, 2.32, 2.78, 1.381, 0.037, 0.858, 1.308, 2.115, 0.507, 0.078, 1.834, 2.062, 2.098, 0.908, 2.876, 3.29, 3.473, 2.757, 3.997, 2.907, 3.782, 1.133, 3.638, 0.084, 2.067, 3.457, 2.984, 1.691, 2.731, 2.749, 2.35, 0.914, 0.67, 3.026, 1.059, 3.609, 0.065, 3.643, 0.46, 0.185, 0.714, 1.901, 2.367, 0.145, 0.506] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } } } ], @@ -13067,12 +13073,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } } }, { @@ -13119,6 +13119,12 @@ [2.219, 1.468, 0.749, 2.884, 1.283, 3.427, 2.803, 1.51, 1.342, 2.523, 1.042, 2.681, 2.696, 3.314, 0.579, 1.873, 3.617, 3.383, 1.757, 1.727, 0.92, 1.391, 3.072, 3.848, 3.267, 3.225, 3.829, 2.297, 3.812, 2.192, 1.88, 2.765, 3.493, 3.578, 3.848, 1.989, 2.235, 2.807, 1.447, 3.321, 3.547, 3.404, 3.328, 0.502, 0.016, 0.928, 1.368, 0.329, 3.881, 2.311, 1.097] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } } } ], @@ -13128,12 +13134,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } } }, { @@ -13180,6 +13180,12 @@ [2.518, 0.609, 2.417, 3.586, 0.827, 2.396, 0.9, 3.616, 2.058, 3.598, 0.506, 1.697, 3.15, 0.642, 2.277, 3.187, 3.118, 3.465, 2.59, 3.638, 0.809, 1.935, 2.436, 2.18, 1.516, 2.063, 2.569, 3.832, 2.339, 1.856, 3.5, 2.415, 1.501, 1.094, 3.362, 2.155, 1.075, 3.991, 3.02, 3.592, 1.334, 3.19, 3.389, 3.723, 3.04, 1.706, 0.177, 3.86, 1.739, 1.74, 2.25] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 558.0, + "unit": "nm" + } } } ], @@ -13189,12 +13195,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 558.0, - "unit": "nm" - } } }, { @@ -13241,6 +13241,12 @@ [0.864, 1.291, 2.673, 0.287, 0.582, 2.173, 0.237, 2.069, 2.763, 3.827, 1.068, 1.277, 0.202, 0.097, 2.091, 0.196, 2.056, 1.279, 0.121, 2.112, 3.126, 0.444, 2.997, 2.303, 1.619, 2.546, 2.712, 3.139, 3.809, 1.886, 2.708, 2.093, 0.598, 3.606, 2.636, 1.123, 2.827, 0.806, 2.78, 3.982, 0.838, 1.922, 0.257, 3.765, 0.266, 1.913, 3.186, 3.625, 0.949, 1.51, 2.121] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } } } ], @@ -13250,12 +13256,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } } }, { @@ -13302,6 +13302,12 @@ [2.581, 1.617, 3.628, 3.123, 0.419, 2.294, 0.369, 2.668, 2.035, 3.46, 1.097, 2.26, 0.877, 1.118, 2.975, 0.678, 0.596, 1.461, 0.967, 1.368, 1.249, 2.498, 0.139, 1.273, 1.204, 0.187, 3.232, 2.036, 3.706, 3.36, 3.086, 2.19, 2.298, 3.764, 0.127, 0.475, 0.97, 0.482, 2.216, 2.829, 2.458, 2.138, 0.745, 0.521, 3.741, 3.661, 3.379, 2.646, 1.291, 1.234, 2.59] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } } } ], @@ -13311,12 +13317,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 565.0, - "unit": "nm" - } } }, { @@ -13363,6 +13363,12 @@ [2.163, 3.982, 0.142, 0.871, 0.082, 1.478, 2.354, 1.919, 0.231, 3.062, 2.332, 2.962, 2.675, 0.374, 2.907, 3.961, 1.112, 0.991, 2.499, 3.707, 0.114, 3.245, 2.137, 2.91, 3.11, 1.753, 3.617, 1.532, 1.542, 0.808, 0.585, 0.744, 2.471, 0.769, 0.922, 2.207, 2.156, 2.893, 0.044, 2.996, 2.616, 2.562, 1.984, 3.767, 0.125, 3.176, 2.069, 0.147, 0.834, 3.699, 2.266] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -13372,12 +13378,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -13424,6 +13424,12 @@ [1.654, 2.791, 1.526, 2.476, 2.918, 1.844, 1.232, 1.761, 2.329, 1.861, 0.821, 0.376, 3.423, 2.476, 1.587, 0.49, 1.905, 3.451, 0.699, 1.805, 2.219, 0.947, 3.503, 1.091, 1.551, 1.26, 2.37, 2.784, 3.934, 3.683, 3.47, 0.698, 1.842, 2.541, 2.93, 1.953, 0.945, 2.293, 2.004, 0.362, 0.924, 1.131, 1.715, 1.135, 1.794, 2.185, 2.561, 1.291, 2.537, 2.686, 0.163] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } } } ], @@ -13433,12 +13439,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 549.0, - "unit": "nm" - } } }, { @@ -13485,6 +13485,12 @@ [0.695, 0.134, 1.894, 0.047, 0.707, 3.288, 0.435, 0.924, 1.658, 3.474, 2.447, 1.826, 2.645, 2.391, 0.123, 2.534, 0.882, 3.545, 3.634, 3.544, 3.612, 1.447, 0.336, 0.88, 1.087, 3.231, 2.368, 3.296, 3.366, 2.699, 1.078, 0.246, 1.247, 3.52, 2.774, 0.563, 3.948, 2.493, 2.223, 2.664, 0.51, 1.368, 0.345, 0.888, 2.477, 3.304, 3.07, 2.743, 1.671, 3.651, 1.678] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 538.0, + "unit": "nm" + } } } ], @@ -13494,12 +13500,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 538.0, - "unit": "nm" - } } }, { @@ -13546,6 +13546,12 @@ [1.745, 2.903, 3.141, 0.551, 3.248, 3.797, 1.014, 2.959, 1.476, 0.92, 1.138, 1.558, 2.959, 2.395, 2.201, 0.579, 3.124, 3.616, 3.559, 2.585, 2.388, 1.322, 0.97, 3.034, 2.243, 1.101, 3.448, 2.403, 1.782, 0.161, 3.624, 1.625, 3.714, 1.02, 3.333, 1.343, 2.106, 2.969, 3.525, 0.765, 2.933, 3.534, 0.747, 1.744, 3.371, 3.81, 1.386, 2.492, 0.276, 2.725, 3.945] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } } } ], @@ -13555,12 +13561,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 570.0, - "unit": "nm" - } } }, { @@ -13607,6 +13607,12 @@ [3.126, 2.111, 1.065, 3.29, 0.423, 1.933, 0.106, 2.307, 2.147, 0.349, 2.611, 1.176, 1.314, 1.295, 3.512, 1.843, 1.938, 3.062, 0.857, 2.472, 0.155, 0.091, 2.793, 3.651, 2.854, 0.575, 3.225, 3.663, 2.433, 3.714, 0.955, 2.127, 3.056, 0.216, 0.497, 3.514, 2.649, 1.73, 2.91, 3.41, 1.999, 0.662, 1.378, 0.416, 0.322, 2.357, 3.432, 0.448, 3.858, 1.967, 3.447] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -13616,12 +13622,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -13668,6 +13668,12 @@ [3.43, 3.418, 0.253, 3.789, 3.035, 3.317, 1.413, 0.435, 3.847, 2.707, 0.443, 3.873, 2.432, 3.393, 0.484, 2.12, 1.098, 0.797, 3.998, 3.194, 0.208, 0.152, 1.447, 0.472, 3.493, 2.713, 2.377, 3.329, 0.497, 1.143, 2.776, 3.804, 0.466, 0.267, 1.525, 2.708, 2.803, 0.426, 1.461, 0.196, 1.235, 1.294, 3.062, 0.703, 1.556, 0.788, 2.945, 1.022, 3.838, 0.237, 2.334] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 524.0, + "unit": "nm" + } } } ], @@ -13677,12 +13683,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 524.0, - "unit": "nm" - } } }, { @@ -13729,6 +13729,12 @@ [3.65, 3.86, 2.772, 3.239, 3.277, 1.971, 3.78, 0.296, 0.322, 0.94, 2.084, 3.938, 2.704, 3.93, 0.639, 3.406, 2.165, 1.867, 1.775, 3.316, 0.671, 3.336, 3.802, 1.958, 2.913, 1.089, 0.744, 2.916, 2.704, 3.767, 1.354, 3.49, 0.26, 2.808, 3.125, 3.943, 1.693, 1.027, 2.247, 0.737, 3.022, 0.13, 1.139, 3.256, 3.15, 1.356, 0.358, 0.772, 0.916, 1.381, 0.78] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } } } ], @@ -13738,12 +13744,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 520.0, - "unit": "nm" - } } }, { @@ -13790,6 +13790,12 @@ [3.154, 2.063, 0.92, 1.662, 0.314, 0.058, 0.814, 0.325, 2.188, 1.226, 0.863, 1.591, 0.555, 3.585, 2.594, 3.678, 3.895, 0.804, 0.695, 1.713, 1.137, 3.619, 1.037, 0.294, 0.541, 2.196, 0.545, 2.807, 1.557, 0.73, 3.971, 1.999, 1.323, 2.986, 2.199, 1.427, 3.339, 1.146, 2.81, 3.885, 0.879, 0.701, 0.059, 3.51, 2.158, 2.539, 0.584, 3.671, 0.556, 1.677, 0.462] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -13799,12 +13805,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -13851,6 +13851,12 @@ [3.967, 0.221, 3.668, 3.643, 3.535, 1.025, 0.626, 1.12, 2.118, 3.512, 2.006, 2.768, 1.457, 1.255, 2.863, 0.268, 1.568, 1.385, 1.166, 0.338, 2.749, 1.993, 0.809, 0.834, 0.435, 3.56, 1.527, 2.135, 2.002, 1.612, 0.874, 2.25, 3.879, 0.268, 0.003, 1.778, 1.654, 3.343, 2.664, 0.402, 2.713, 0.025, 0.692, 0.373, 2.872, 1.933, 2.601, 2.255, 3.295, 2.27, 3.015] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 523.0, + "unit": "nm" + } } } ], @@ -13860,12 +13866,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 523.0, - "unit": "nm" - } } }, { @@ -13912,6 +13912,12 @@ [2.286, 3.39, 1.338, 1.713, 1.973, 3.411, 2.834, 3.207, 3.974, 3.497, 2.491, 3.118, 0.506, 2.638, 3.755, 2.888, 1.189, 1.251, 1.085, 2.613, 2.225, 2.72, 0.764, 1.625, 2.723, 1.301, 0.436, 1.961, 2.502, 0.959, 3.271, 2.839, 3.731, 2.596, 2.588, 2.86, 2.54, 2.554, 2.03, 2.366, 2.819, 0.135, 2.69, 0.904, 0.222, 0.906, 0.186, 1.735, 3.116, 3.044, 1.411] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 528.0, + "unit": "nm" + } } } ], @@ -13921,12 +13927,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 528.0, - "unit": "nm" - } } }, { @@ -13973,6 +13973,12 @@ [1.004, 2.209, 3.657, 0.79, 3.565, 2.626, 3.713, 2.989, 0.672, 2.975, 0.873, 0.705, 3.014, 0.226, 3.651, 3.387, 1.909, 0.05, 0.895, 0.348, 2.635, 3.221, 2.718, 3.793, 2.089, 0.029, 3.859, 1.403, 1.817, 1.115, 2.701, 2.845, 3.458, 3.547, 2.267, 0.63, 0.074, 1.806, 3.022, 0.234, 2.826, 3.564, 1.357, 3.391, 1.946, 3.43, 3.675, 0.678, 0.571, 1.519, 2.277] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -13982,12 +13988,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -14034,6 +14034,12 @@ [1.684, 2.22, 2.696, 2.776, 1.783, 3.491, 3.863, 2.7, 3.536, 2.766, 2.31, 1.172, 3.556, 0.274, 2.027, 1.246, 3.466, 1.959, 3.021, 3.313, 0.102, 1.027, 0.661, 1.521, 3.07, 1.863, 3.326, 1.847, 2.658, 0.354, 3.181, 0.832, 0.297, 2.838, 1.016, 0.624, 0.762, 0.771, 0.483, 1.138, 0.21, 3.105, 3.486, 1.468, 0.516, 2.391, 1.8, 3.117, 3.918, 2.183, 0.208] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } } } ], @@ -14043,12 +14049,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 568.0, - "unit": "nm" - } } }, { @@ -14095,6 +14095,12 @@ [2.718, 1.549, 2.206, 2.174, 0.657, 1.559, 1.174, 3.705, 3.92, 0.164, 2.016, 0.042, 3.181, 3.584, 1.478, 0.874, 0.718, 3.258, 1.403, 0.484, 2.695, 1.475, 1.882, 3.102, 0.996, 1.541, 3.193, 1.004, 0.678, 0.062, 0.209, 1.928, 0.474, 0.145, 0.462, 3.282, 2.091, 0.663, 0.359, 3.064, 3.587, 1.066, 0.563, 0.973, 2.194, 3.063, 0.304, 1.883, 3.037, 1.517, 1.082] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -14104,12 +14110,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -14156,6 +14156,12 @@ [3.858, 2.514, 1.699, 1.513, 1.243, 3.666, 3.103, 1.177, 3.115, 2.366, 0.169, 3.026, 3.858, 3.955, 0.088, 3.567, 3.036, 3.122, 2.196, 2.783, 0.054, 2.899, 2.339, 0.897, 1.628, 0.912, 0.909, 0.907, 1.933, 1.237, 1.309, 1.967, 3.161, 2.979, 0.35, 3.413, 2.775, 2.631, 3.219, 3.615, 2.988, 3.486, 1.243, 0.697, 3.417, 2.039, 0.705, 1.018, 2.106, 3.495, 1.268] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -14165,12 +14171,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -14217,6 +14217,12 @@ [2.761, 0.841, 2.733, 1.027, 0.959, 0.175, 0.801, 3.884, 0.331, 2.757, 2.196, 3.243, 1.878, 1.056, 2.202, 3.865, 0.878, 3.604, 0.674, 0.792, 0.404, 3.902, 2.581, 3.795, 0.568, 1.655, 1.641, 1.48, 3.589, 0.206, 3.89, 2.8, 2.437, 3.969, 2.548, 1.125, 0.427, 1.952, 3.391, 3.237, 1.974, 2.747, 2.887, 0.857, 0.792, 0.242, 3.365, 3.64, 1.214, 2.173, 3.827] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } } } ], @@ -14226,12 +14232,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 542.0, - "unit": "nm" - } } }, { @@ -14278,6 +14278,12 @@ [1.414, 1.431, 2.703, 0.863, 2.858, 2.26, 2.938, 0.459, 3.304, 2.533, 3.32, 0.295, 0.124, 2.866, 3.395, 0.806, 1.908, 2.508, 1.076, 3.437, 2.925, 0.212, 1.436, 2.817, 1.657, 1.015, 1.723, 3.003, 0.325, 2.289, 2.001, 0.265, 1.415, 0.379, 2.476, 1.369, 3.733, 3.105, 3.69, 2.865, 1.488, 1.492, 0.087, 0.704, 2.653, 2.451, 2.762, 1.99, 1.397, 3.436, 1.456] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } } } ], @@ -14287,12 +14293,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } } }, { @@ -14339,6 +14339,12 @@ [1.132, 0.137, 2.736, 0.901, 1.201, 3.995, 3.885, 3.206, 1.843, 0.536, 3.935, 0.134, 1.014, 0.532, 3.055, 2.879, 3.745, 0.39, 2.025, 1.072, 2.803, 2.818, 2.211, 1.948, 1.433, 0.125, 0.732, 0.164, 3.205, 2.252, 3.732, 1.606, 0.889, 0.832, 0.869, 0.128, 2.679, 3.477, 1.275, 1.374, 3.848, 3.899, 1.846, 2.329, 1.553, 1.358, 3.072, 0.172, 3.598, 3.572, 3.017] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } } } ], @@ -14348,12 +14354,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 526.0, - "unit": "nm" - } } }, { @@ -14400,6 +14400,12 @@ [1.6, 3.371, 2.363, 2.653, 2.313, 1.926, 0.787, 3.468, 1.075, 3.262, 3.721, 0.0, 3.59, 0.803, 2.329, 3.245, 0.182, 3.662, 2.927, 0.199, 0.267, 3.115, 0.651, 1.224, 2.903, 0.971, 3.882, 0.395, 0.074, 1.053, 0.559, 0.566, 3.633, 3.235, 2.132, 2.234, 2.525, 2.178, 2.555, 2.201, 1.892, 0.009, 0.199, 2.111, 0.126, 3.898, 2.256, 1.525, 3.223, 2.113, 2.89] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } } } ], @@ -14409,12 +14415,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } } }, { @@ -14461,6 +14461,12 @@ [0.509, 0.671, 3.372, 2.749, 2.485, 2.719, 1.139, 3.749, 1.342, 2.044, 0.391, 3.393, 0.022, 2.702, 3.155, 0.367, 0.355, 2.671, 0.094, 0.719, 2.003, 1.107, 0.725, 2.307, 0.258, 2.915, 2.54, 1.097, 3.005, 2.715, 2.356, 1.172, 1.961, 2.163, 0.05, 3.894, 0.261, 0.485, 3.646, 3.515, 1.385, 2.429, 1.213, 0.156, 1.501, 0.616, 0.176, 3.408, 0.971, 3.531, 1.901] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } } } ], @@ -14470,12 +14476,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 559.0, - "unit": "nm" - } } }, { @@ -14522,6 +14522,12 @@ [2.853, 3.128, 1.393, 0.886, 3.402, 3.945, 1.064, 2.491, 3.569, 0.178, 0.042, 0.744, 2.626, 3.687, 3.218, 1.432, 1.859, 2.652, 3.26, 0.106, 3.869, 3.025, 0.579, 3.334, 3.574, 3.893, 0.568, 0.805, 3.642, 2.739, 3.132, 0.125, 3.474, 0.813, 3.503, 2.044, 0.567, 1.276, 0.647, 3.949, 3.196, 1.994, 0.076, 3.337, 1.343, 1.684, 2.586, 0.469, 2.283, 3.183, 2.317] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } } } ], @@ -14531,12 +14537,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 544.0, - "unit": "nm" - } } }, { @@ -14583,6 +14583,12 @@ [0.755, 1.711, 3.424, 2.031, 3.828, 2.549, 2.059, 1.312, 3.508, 3.376, 0.258, 2.849, 0.83, 1.046, 3.916, 1.269, 1.812, 0.184, 1.173, 0.864, 0.582, 2.004, 3.31, 0.909, 1.874, 2.948, 1.241, 1.991, 1.889, 1.307, 0.099, 2.522, 0.458, 0.421, 2.376, 2.413, 0.049, 2.781, 3.675, 3.495, 2.508, 3.964, 1.139, 0.572, 2.937, 3.144, 3.246, 2.29, 1.426, 0.414, 0.773] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 558.0, + "unit": "nm" + } } } ], @@ -14592,12 +14598,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 558.0, - "unit": "nm" - } } }, { @@ -14644,6 +14644,12 @@ [0.285, 1.109, 2.319, 1.735, 2.75, 2.401, 2.514, 0.157, 0.879, 1.307, 0.067, 3.422, 2.201, 3.277, 1.736, 2.391, 0.408, 2.669, 1.503, 1.22, 3.03, 0.508, 1.678, 2.355, 0.617, 0.865, 2.738, 1.972, 2.73, 3.702, 2.95, 0.565, 1.474, 0.533, 3.814, 1.413, 2.138, 2.686, 3.625, 0.012, 1.534, 2.624, 2.795, 2.187, 2.44, 0.542, 2.937, 1.295, 1.201, 0.753, 2.837] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } } } ], @@ -14653,12 +14659,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 549.0, - "unit": "nm" - } } }, { @@ -14705,6 +14705,12 @@ [3.621, 3.923, 3.194, 1.742, 3.776, 3.43, 3.963, 1.117, 1.885, 3.662, 0.542, 1.427, 1.177, 2.356, 3.502, 1.947, 1.668, 3.462, 0.322, 0.252, 1.722, 3.044, 1.49, 3.685, 0.406, 1.712, 3.491, 3.914, 0.075, 1.927, 1.442, 0.771, 1.976, 0.864, 3.329, 0.642, 2.28, 2.79, 0.037, 1.982, 2.175, 1.568, 1.739, 0.349, 0.992, 1.197, 1.618, 3.83, 2.938, 2.594, 1.269] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -14714,12 +14720,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -14766,6 +14766,12 @@ [1.832, 0.878, 0.501, 1.114, 0.576, 2.432, 3.508, 1.336, 2.063, 3.939, 0.048, 1.042, 3.958, 2.22, 3.77, 3.45, 0.313, 3.026, 2.86, 3.667, 2.878, 3.424, 2.34, 2.076, 0.154, 1.304, 1.14, 2.693, 3.208, 0.094, 3.66, 0.976, 1.481, 0.657, 3.61, 3.893, 1.474, 3.749, 2.753, 2.209, 2.771, 1.453, 1.974, 2.043, 2.126, 0.525, 1.781, 2.129, 1.221, 1.746, 1.305] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 538.0, + "unit": "nm" + } } } ], @@ -14775,12 +14781,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 538.0, - "unit": "nm" - } } }, { @@ -14827,6 +14827,12 @@ [0.804, 0.077, 2.926, 2.391, 2.407, 2.537, 2.424, 0.959, 3.272, 1.292, 0.815, 2.128, 1.969, 0.279, 3.072, 3.561, 3.3, 2.61, 3.876, 1.976, 0.563, 0.273, 0.651, 0.896, 1.424, 1.45, 0.297, 3.95, 3.629, 3.522, 3.01, 1.471, 1.461, 2.789, 2.856, 0.899, 2.554, 2.266, 1.202, 1.355, 3.049, 2.789, 3.48, 0.916, 1.955, 3.324, 0.005, 1.763, 3.054, 0.964, 2.481] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } } } ], @@ -14836,12 +14842,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 548.0, - "unit": "nm" - } } }, { @@ -14888,6 +14888,12 @@ [3.519, 1.344, 3.77, 0.741, 0.53, 3.425, 2.029, 0.966, 0.957, 2.24, 2.474, 1.33, 3.749, 2.281, 3.344, 0.667, 3.179, 1.423, 2.172, 1.006, 1.033, 1.407, 2.521, 2.926, 1.773, 0.792, 3.734, 2.941, 2.099, 1.445, 2.533, 0.896, 2.664, 1.041, 3.491, 0.126, 1.69, 2.047, 2.325, 1.473, 0.525, 1.299, 0.245, 3.115, 0.575, 1.459, 3.731, 2.635, 2.61, 2.657, 0.825] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -14897,12 +14903,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -14949,6 +14949,12 @@ [0.34, 0.881, 3.958, 1.447, 2.111, 2.823, 0.843, 2.968, 3.737, 3.691, 3.088, 2.866, 3.511, 3.707, 1.578, 2.666, 2.708, 2.789, 3.218, 2.976, 1.132, 3.097, 0.699, 0.48, 3.734, 1.162, 3.406, 2.351, 0.314, 1.061, 1.099, 0.33, 3.442, 0.62, 2.192, 0.014, 2.705, 3.593, 1.38, 1.302, 0.846, 3.078, 2.588, 1.782, 1.436, 2.432, 0.733, 3.407, 2.996, 2.792, 1.023] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 528.0, + "unit": "nm" + } } } ], @@ -14958,12 +14964,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 528.0, - "unit": "nm" - } } }, { @@ -15010,6 +15010,12 @@ [3.845, 3.392, 3.68, 3.692, 1.242, 0.181, 3.477, 1.713, 0.948, 3.417, 2.492, 2.654, 2.676, 2.592, 2.758, 3.424, 2.891, 1.514, 1.563, 3.96, 3.114, 1.409, 1.915, 2.129, 2.053, 0.509, 2.917, 3.044, 1.301, 0.429, 3.998, 3.355, 1.521, 0.038, 1.253, 0.937, 3.762, 0.927, 0.949, 3.832, 3.227, 1.88, 0.431, 1.884, 2.354, 0.424, 3.912, 3.189, 2.677, 3.008, 1.842] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 521.0, + "unit": "nm" + } } } ], @@ -15019,12 +15025,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 521.0, - "unit": "nm" - } } }, { @@ -15071,6 +15071,12 @@ [1.892, 1.433, 2.831, 1.908, 2.436, 1.476, 1.55, 1.639, 0.733, 1.264, 0.433, 0.411, 0.519, 3.419, 3.136, 1.132, 2.637, 1.338, 1.82, 3.662, 1.963, 0.564, 1.73, 0.733, 1.234, 0.978, 0.031, 3.774, 1.629, 0.597, 3.727, 0.366, 2.293, 2.587, 2.105, 1.922, 2.69, 2.129, 2.817, 3.461, 2.211, 3.288, 0.216, 2.568, 2.794, 1.468, 3.912, 2.465, 3.217, 3.291, 1.274] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 567.0, + "unit": "nm" + } } } ], @@ -15080,12 +15086,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 567.0, - "unit": "nm" - } } }, { @@ -15132,6 +15132,12 @@ [1.85, 0.857, 3.345, 3.878, 1.327, 3.702, 2.098, 0.673, 1.457, 1.445, 1.775, 0.009, 0.136, 1.536, 0.066, 2.117, 1.931, 1.313, 1.214, 2.442, 0.507, 2.521, 2.359, 1.45, 2.675, 0.348, 3.162, 1.938, 3.766, 1.065, 1.565, 0.556, 2.337, 3.323, 1.876, 3.509, 2.947, 2.708, 0.777, 2.219, 0.591, 1.456, 1.359, 2.015, 0.435, 3.278, 0.08, 1.031, 2.727, 3.351, 1.98] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 556.0, + "unit": "nm" + } } } ], @@ -15141,12 +15147,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 556.0, - "unit": "nm" - } } }, { @@ -15193,6 +15193,12 @@ [1.152, 2.003, 0.849, 0.766, 3.329, 2.497, 1.895, 1.203, 0.979, 0.54, 0.16, 0.907, 0.392, 3.88, 1.218, 1.672, 0.813, 3.659, 0.557, 3.169, 3.223, 0.535, 2.995, 1.851, 3.051, 1.162, 0.344, 1.015, 3.396, 0.268, 2.13, 3.21, 0.414, 3.085, 0.412, 2.553, 1.488, 2.556, 2.547, 1.011, 1.052, 1.505, 3.798, 1.679, 0.431, 0.549, 0.966, 2.134, 3.216, 1.606, 3.266] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -15202,12 +15208,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -15254,6 +15254,12 @@ [1.371, 2.17, 0.181, 2.757, 0.616, 3.007, 2.997, 1.714, 2.166, 2.153, 0.879, 1.806, 0.71, 2.409, 0.949, 0.492, 1.307, 3.467, 2.665, 0.183, 2.256, 1.112, 3.545, 2.116, 1.717, 0.737, 1.315, 1.419, 2.501, 0.195, 2.209, 1.798, 1.789, 1.001, 0.758, 1.039, 0.233, 0.327, 3.795, 3.546, 2.49, 0.842, 0.381, 2.858, 0.173, 3.698, 3.087, 3.269, 3.481, 0.057, 3.659] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } } } ], @@ -15263,12 +15269,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 559.0, - "unit": "nm" - } } }, { @@ -15315,6 +15315,12 @@ [2.667, 0.551, 1.422, 1.01, 0.259, 2.625, 2.064, 1.039, 3.879, 1.691, 1.578, 3.212, 1.971, 3.943, 3.08, 0.017, 3.709, 1.651, 3.909, 0.258, 0.979, 3.671, 3.118, 1.693, 1.414, 0.73, 0.686, 1.943, 2.018, 1.649, 2.046, 1.937, 2.444, 0.535, 3.542, 1.247, 0.367, 3.99, 0.498, 2.414, 2.168, 3.287, 3.915, 1.854, 0.912, 1.629, 2.41, 2.914, 1.092, 3.681, 3.378] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } } } ], @@ -15324,12 +15330,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 570.0, - "unit": "nm" - } } }, { @@ -15376,6 +15376,12 @@ [1.618, 3.572, 3.798, 2.679, 2.995, 1.432, 3.729, 3.596, 3.528, 1.938, 0.121, 3.02, 2.23, 3.645, 3.64, 0.768, 1.435, 0.401, 1.833, 3.649, 3.718, 1.152, 1.495, 2.09, 1.692, 3.756, 1.264, 0.78, 3.784, 2.32, 1.771, 0.851, 2.337, 2.27, 0.428, 2.365, 2.646, 1.855, 0.546, 3.814, 0.637, 0.394, 0.969, 0.476, 2.047, 0.266, 1.685, 2.209, 1.271, 0.861, 0.974] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -15385,12 +15391,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -15437,6 +15437,12 @@ [2.513, 3.258, 0.031, 3.659, 0.465, 2.076, 1.708, 0.987, 3.239, 0.168, 2.948, 3.811, 1.208, 0.166, 3.269, 0.683, 3.959, 3.217, 1.274, 2.121, 3.579, 3.855, 2.019, 3.011, 3.323, 0.183, 1.019, 0.043, 1.425, 2.07, 3.055, 3.509, 2.923, 1.346, 3.258, 1.593, 2.305, 2.61, 3.963, 0.288, 0.938, 0.868, 1.307, 3.646, 1.689, 0.582, 3.761, 0.309, 2.777, 3.583, 1.725] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 540.0, + "unit": "nm" + } } } ], @@ -15446,12 +15452,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 540.0, - "unit": "nm" - } } }, { @@ -15498,6 +15498,12 @@ [2.992, 3.996, 2.739, 1.395, 2.657, 1.239, 1.019, 0.335, 0.281, 1.057, 1.665, 3.562, 1.168, 1.112, 3.439, 0.887, 3.861, 0.907, 1.676, 2.377, 1.348, 3.253, 0.985, 1.183, 2.711, 2.548, 2.372, 1.322, 2.741, 0.421, 0.709, 1.265, 1.841, 0.345, 0.063, 3.512, 0.184, 3.95, 0.6, 0.353, 1.286, 2.275, 3.681, 3.231, 3.273, 1.305, 0.138, 2.533, 2.25, 3.695, 3.899] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } } } ], @@ -15507,12 +15513,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 570.0, - "unit": "nm" - } } }, { @@ -15559,6 +15559,12 @@ [3.401, 1.101, 1.205, 0.376, 3.738, 3.01, 1.555, 2.684, 0.109, 2.866, 3.697, 1.594, 3.859, 0.347, 0.399, 1.72, 0.823, 1.049, 3.927, 0.703, 3.911, 0.307, 1.322, 1.091, 3.073, 3.572, 1.754, 1.91, 1.405, 2.409, 3.839, 3.072, 3.045, 0.522, 1.308, 0.163, 0.636, 3.968, 0.325, 0.501, 2.628, 1.266, 0.491, 1.487, 1.588, 0.68, 3.821, 2.883, 2.873, 3.584, 3.315] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } } } ], @@ -15568,12 +15574,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 551.0, - "unit": "nm" - } } }, { @@ -15620,6 +15620,12 @@ [1.484, 2.323, 2.992, 3.988, 3.094, 3.779, 0.114, 1.303, 0.166, 1.256, 3.645, 1.278, 1.7, 3.027, 0.624, 2.549, 3.337, 3.039, 0.236, 1.084, 0.854, 0.724, 3.425, 2.074, 2.645, 3.816, 3.835, 3.502, 2.393, 3.75, 2.87, 3.037, 1.82, 3.093, 2.354, 0.749, 0.053, 0.534, 2.214, 0.384, 0.521, 2.665, 0.158, 3.245, 2.983, 3.987, 2.79, 2.459, 0.964, 2.13, 0.484] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 546.0, + "unit": "nm" + } } } ], @@ -15629,12 +15635,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 546.0, - "unit": "nm" - } } }, { @@ -15681,6 +15681,12 @@ [3.844, 2.637, 2.5, 2.46, 0.759, 2.897, 0.917, 1.342, 3.278, 3.943, 0.612, 2.909, 0.415, 2.385, 0.608, 3.457, 2.606, 0.672, 3.875, 2.495, 2.803, 0.824, 3.851, 0.563, 2.189, 0.565, 0.18, 3.09, 2.658, 1.025, 1.375, 2.538, 0.262, 3.266, 3.025, 0.399, 3.32, 0.633, 1.595, 1.851, 3.135, 3.191, 2.935, 0.44, 3.909, 3.755, 3.743, 0.859, 2.375, 0.529, 0.183] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } } } ], @@ -15690,12 +15696,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 565.0, - "unit": "nm" - } } }, { @@ -15742,6 +15742,12 @@ [1.786, 1.088, 3.635, 1.68, 3.019, 2.785, 1.937, 0.271, 0.194, 2.716, 1.827, 2.684, 2.252, 2.567, 2.074, 2.646, 1.149, 3.359, 0.208, 0.137, 1.973, 3.077, 2.023, 3.36, 3.611, 1.889, 3.41, 0.654, 2.433, 0.822, 3.321, 0.715, 2.128, 0.841, 3.589, 1.449, 0.627, 1.585, 0.005, 1.614, 1.383, 0.361, 1.4, 3.135, 1.308, 0.507, 0.682, 1.873, 1.834, 1.108, 2.593] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -15751,12 +15757,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -15803,6 +15803,12 @@ [1.499, 2.166, 0.391, 2.21, 2.708, 3.065, 0.275, 2.069, 1.13, 3.375, 1.283, 1.837, 3.372, 3.395, 1.112, 0.555, 1.411, 2.978, 0.624, 2.019, 3.564, 3.354, 2.594, 2.754, 1.611, 1.677, 2.888, 2.051, 3.104, 1.206, 1.537, 2.819, 1.324, 2.228, 1.821, 2.548, 1.736, 2.631, 0.88, 2.384, 0.352, 3.515, 2.875, 2.239, 0.1, 2.523, 2.028, 3.739, 0.196, 3.951, 3.271] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } } } ], @@ -15812,12 +15818,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 570.0, - "unit": "nm" - } } }, { @@ -15864,6 +15864,12 @@ [2.894, 1.21, 3.089, 3.028, 2.145, 3.572, 1.637, 0.598, 1.031, 0.176, 2.223, 2.965, 3.924, 1.837, 2.463, 0.513, 1.143, 1.574, 2.563, 2.818, 2.779, 2.098, 2.24, 1.667, 0.048, 0.478, 0.355, 2.653, 3.087, 3.648, 3.149, 1.855, 3.152, 1.934, 2.643, 1.609, 2.235, 3.2, 3.676, 2.975, 0.098, 2.032, 3.848, 2.207, 2.128, 0.55, 2.95, 0.401, 1.636, 2.01, 0.885] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 558.0, + "unit": "nm" + } } } ], @@ -15873,12 +15879,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 558.0, - "unit": "nm" - } } }, { @@ -15925,6 +15925,12 @@ [2.165, 1.632, 1.132, 0.492, 0.795, 2.969, 1.422, 2.98, 1.666, 3.217, 2.984, 1.51, 1.383, 1.027, 0.367, 3.812, 1.989, 3.194, 0.854, 2.278, 1.943, 1.897, 3.587, 2.719, 0.746, 2.25, 0.032, 3.538, 3.498, 1.527, 3.953, 1.017, 1.077, 2.763, 0.983, 0.223, 2.019, 1.442, 1.847, 2.639, 0.812, 0.219, 2.009, 3.758, 1.114, 0.522, 2.465, 1.179, 1.76, 0.737, 0.961] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } } } ], @@ -15934,12 +15940,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 536.0, - "unit": "nm" - } } }, { @@ -15986,6 +15986,12 @@ [1.207, 0.782, 3.732, 2.942, 0.267, 2.044, 2.412, 3.745, 2.545, 2.936, 1.883, 3.481, 0.139, 3.263, 1.967, 0.433, 2.62, 0.043, 0.144, 1.792, 0.547, 1.346, 2.214, 1.465, 1.723, 3.888, 3.829, 1.605, 0.224, 3.785, 2.852, 1.777, 2.76, 0.566, 2.746, 0.234, 1.344, 3.82, 0.716, 2.178, 3.607, 1.696, 3.302, 3.702, 2.929, 0.737, 1.87, 0.494, 3.147, 0.088, 3.845] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } } } ], @@ -15995,12 +16001,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } } }, { @@ -16047,6 +16047,12 @@ [1.136, 1.616, 2.944, 0.413, 3.86, 2.567, 2.267, 1.219, 0.378, 2.215, 0.807, 3.52, 2.76, 0.084, 0.105, 0.721, 3.572, 0.517, 1.732, 3.088, 2.799, 3.327, 1.965, 2.185, 2.85, 2.044, 2.511, 2.536, 0.985, 2.017, 3.334, 2.457, 0.135, 3.939, 1.716, 0.161, 3.815, 0.153, 2.885, 1.666, 3.077, 2.601, 0.337, 3.963, 2.799, 2.176, 0.541, 3.618, 2.823, 0.016, 2.298] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 564.0, + "unit": "nm" + } } } ], @@ -16056,12 +16062,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 564.0, - "unit": "nm" - } } }, { @@ -16108,6 +16108,12 @@ [3.977, 1.415, 1.0, 1.045, 1.808, 3.651, 0.759, 1.562, 1.816, 0.055, 3.73, 0.233, 2.361, 2.88, 2.349, 3.384, 2.82, 2.367, 3.944, 0.905, 3.418, 1.632, 0.065, 0.01, 0.197, 2.989, 2.001, 3.386, 0.674, 1.502, 2.893, 3.712, 0.968, 3.719, 3.357, 1.042, 3.135, 2.894, 3.907, 0.51, 3.056, 2.591, 1.068, 1.611, 3.346, 2.367, 1.976, 1.082, 0.449, 2.791, 1.721] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } } } ], @@ -16117,12 +16123,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 520.0, - "unit": "nm" - } } }, { @@ -16169,6 +16169,12 @@ [1.251, 2.878, 3.111, 2.879, 2.344, 1.349, 0.989, 0.848, 2.819, 1.649, 1.373, 0.887, 0.313, 1.162, 0.017, 3.265, 2.641, 3.523, 1.307, 0.249, 3.926, 2.459, 3.434, 1.848, 0.827, 0.563, 2.454, 0.663, 1.829, 1.013, 0.919, 2.936, 1.883, 3.781, 1.641, 0.834, 1.856, 0.84, 1.012, 3.693, 2.146, 2.045, 1.088, 2.86, 1.683, 1.703, 0.755, 0.448, 3.328, 3.102, 3.335] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -16178,12 +16184,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -16230,6 +16230,12 @@ [1.559, 3.142, 2.541, 1.794, 2.792, 3.444, 1.262, 2.051, 1.781, 2.895, 0.325, 3.018, 1.805, 0.729, 2.436, 3.004, 0.531, 3.521, 3.183, 1.408, 1.8, 2.511, 1.614, 2.103, 1.88, 1.37, 0.573, 0.165, 3.124, 3.808, 2.005, 1.335, 2.726, 1.677, 3.36, 3.794, 3.341, 1.986, 2.849, 1.39, 0.593, 2.788, 3.231, 0.798, 1.82, 3.026, 3.282, 2.131, 3.246, 2.699, 0.223] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } } } ], @@ -16239,12 +16245,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } } }, { @@ -16291,6 +16291,12 @@ [0.927, 0.145, 1.694, 1.534, 3.048, 1.528, 0.438, 3.914, 1.421, 2.87, 1.097, 2.927, 1.973, 0.889, 2.99, 0.291, 0.128, 1.369, 2.642, 3.662, 2.544, 0.671, 1.793, 0.814, 3.011, 3.279, 0.816, 0.282, 2.853, 2.087, 2.442, 0.918, 0.424, 3.584, 1.078, 1.189, 1.032, 0.143, 0.312, 2.266, 2.902, 2.072, 1.428, 2.519, 3.496, 3.861, 1.258, 3.908, 2.83, 2.735, 3.154] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 564.0, + "unit": "nm" + } } } ], @@ -16300,12 +16306,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 564.0, - "unit": "nm" - } } }, { @@ -16352,6 +16352,12 @@ [0.761, 0.604, 3.037, 1.678, 0.255, 2.351, 0.879, 2.522, 3.768, 0.711, 0.156, 1.06, 3.333, 0.427, 0.179, 2.502, 2.388, 3.81, 1.8, 3.258, 3.984, 1.057, 0.376, 0.759, 0.472, 3.243, 3.274, 1.318, 3.15, 2.021, 0.907, 1.452, 0.118, 2.933, 1.681, 0.313, 1.387, 1.905, 0.823, 2.838, 0.153, 1.62, 0.543, 1.554, 2.746, 1.011, 2.094, 2.091, 3.316, 1.358, 2.869] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 540.0, + "unit": "nm" + } } } ], @@ -16361,12 +16367,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 540.0, - "unit": "nm" - } } }, { @@ -16413,6 +16413,12 @@ [0.098, 1.029, 3.476, 3.169, 3.703, 0.228, 2.277, 1.206, 1.011, 3.077, 3.56, 3.372, 1.746, 3.804, 2.703, 0.942, 0.4, 2.746, 3.865, 1.115, 0.483, 2.987, 2.961, 3.105, 2.364, 0.514, 2.821, 2.012, 3.46, 1.149, 1.182, 2.002, 1.791, 3.152, 0.808, 0.422, 0.642, 3.763, 1.978, 0.085, 3.109, 0.699, 3.811, 3.761, 0.593, 2.248, 2.797, 1.749, 0.043, 0.069, 1.694] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 523.0, + "unit": "nm" + } } } ], @@ -16422,12 +16428,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 523.0, - "unit": "nm" - } } }, { @@ -16474,6 +16474,12 @@ [3.345, 3.45, 0.243, 2.386, 1.111, 2.068, 0.371, 0.805, 3.189, 1.406, 0.265, 1.745, 3.862, 1.894, 1.558, 1.58, 2.594, 2.996, 2.281, 0.3, 0.636, 0.768, 3.78, 2.005, 3.783, 3.175, 3.2, 2.512, 0.116, 1.716, 1.072, 1.969, 3.39, 3.454, 1.836, 2.551, 1.548, 0.765, 3.697, 2.354, 0.27, 2.958, 2.789, 2.679, 2.844, 2.953, 3.948, 1.866, 3.034, 0.667, 0.202] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } } } ], @@ -16483,12 +16489,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 520.0, - "unit": "nm" - } } }, { @@ -16535,6 +16535,12 @@ [2.753, 1.761, 3.769, 1.058, 2.577, 3.67, 2.237, 2.602, 1.936, 2.867, 1.859, 0.688, 1.472, 0.333, 2.295, 2.355, 0.408, 0.057, 3.006, 0.031, 1.828, 3.299, 3.926, 0.029, 1.677, 1.978, 1.101, 3.16, 0.83, 3.226, 1.333, 3.477, 3.448, 1.513, 2.319, 0.207, 3.621, 2.396, 3.259, 2.881, 3.31, 2.163, 1.76, 3.486, 2.411, 2.269, 1.316, 2.345, 0.549, 0.598, 3.54] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -16544,12 +16550,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -16596,6 +16596,12 @@ [1.808, 0.027, 0.636, 2.374, 3.454, 1.835, 3.74, 3.38, 0.598, 2.569, 3.077, 1.771, 2.709, 1.533, 2.381, 1.24, 3.958, 2.014, 2.087, 2.734, 2.011, 0.798, 0.125, 0.721, 3.665, 1.538, 0.439, 1.617, 3.407, 0.662, 2.756, 2.611, 0.232, 3.685, 3.525, 3.449, 2.812, 3.139, 2.864, 2.372, 3.88, 3.016, 2.661, 0.312, 0.233, 0.391, 3.051, 1.953, 0.029, 1.029, 1.358] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 554.0, + "unit": "nm" + } } } ], @@ -16605,12 +16611,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 554.0, - "unit": "nm" - } } }, { @@ -16657,6 +16657,12 @@ [0.33, 2.461, 1.863, 1.529, 1.01, 3.902, 3.914, 2.708, 1.916, 1.395, 2.122, 3.972, 3.936, 3.812, 0.466, 1.539, 3.023, 2.008, 2.932, 2.428, 0.818, 3.149, 3.714, 2.853, 2.995, 2.136, 3.813, 0.487, 3.274, 2.486, 2.486, 1.587, 2.378, 3.303, 2.425, 0.149, 2.368, 2.156, 2.514, 3.547, 2.897, 0.431, 0.948, 0.977, 1.757, 3.043, 2.725, 0.499, 3.766, 2.851, 0.027] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -16666,12 +16672,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -16718,6 +16718,12 @@ [3.944, 1.097, 2.601, 0.539, 1.18, 2.746, 3.01, 2.533, 2.873, 0.088, 3.427, 3.433, 3.429, 2.908, 0.535, 1.594, 0.632, 1.387, 0.317, 3.17, 0.867, 3.493, 3.384, 3.53, 0.387, 2.201, 2.737, 1.095, 3.952, 3.411, 3.314, 0.72, 0.422, 2.458, 2.541, 0.489, 3.776, 2.763, 1.244, 1.402, 3.358, 3.622, 3.641, 3.459, 3.47, 0.997, 1.518, 2.068, 1.222, 1.448, 2.092] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } } } ], @@ -16727,12 +16733,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 549.0, - "unit": "nm" - } } }, { @@ -16779,6 +16779,12 @@ [3.111, 3.449, 3.681, 3.16, 0.451, 1.713, 3.07, 0.152, 2.979, 0.009, 1.915, 2.581, 3.461, 0.773, 2.706, 3.01, 0.971, 0.367, 0.045, 1.817, 1.869, 0.142, 2.914, 3.812, 1.244, 3.852, 3.925, 0.06, 3.389, 0.682, 0.669, 3.872, 2.503, 1.319, 0.203, 1.271, 0.741, 3.297, 2.09, 2.776, 0.706, 2.61, 2.265, 1.393, 1.442, 1.04, 0.179, 2.685, 0.764, 1.986, 0.547] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 521.0, + "unit": "nm" + } } } ], @@ -16788,12 +16794,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 521.0, - "unit": "nm" - } } }, { @@ -16840,6 +16840,12 @@ [1.701, 1.176, 3.631, 0.223, 2.968, 0.535, 3.868, 1.916, 0.599, 1.787, 3.009, 0.763, 2.296, 3.34, 2.042, 0.078, 2.142, 0.57, 1.435, 2.269, 1.673, 2.276, 1.268, 1.111, 3.258, 1.877, 1.521, 2.369, 0.203, 3.672, 1.24, 3.296, 1.402, 0.134, 2.967, 2.695, 2.872, 1.096, 1.234, 0.736, 0.873, 1.381, 1.491, 0.989, 1.697, 1.847, 3.968, 2.053, 3.4, 0.961, 2.037] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 567.0, + "unit": "nm" + } } } ], @@ -16849,12 +16855,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 567.0, - "unit": "nm" - } } }, { @@ -16901,6 +16901,12 @@ [2.114, 3.329, 3.717, 2.874, 3.424, 3.908, 2.52, 0.964, 1.091, 3.013, 1.498, 1.712, 0.927, 0.547, 3.712, 3.36, 2.162, 0.372, 3.346, 1.206, 1.045, 3.336, 0.698, 1.396, 0.292, 0.785, 0.279, 3.413, 1.411, 1.908, 3.468, 2.969, 3.241, 1.634, 3.125, 3.967, 1.685, 1.26, 3.542, 2.787, 0.351, 0.131, 0.142, 1.722, 3.374, 3.668, 0.563, 0.441, 1.984, 2.486, 1.806] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -16910,12 +16916,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -16962,6 +16962,12 @@ [1.68, 0.053, 3.755, 0.992, 2.778, 2.63, 2.321, 2.582, 2.639, 3.628, 3.106, 3.553, 3.183, 3.545, 2.529, 2.47, 3.292, 1.422, 3.745, 1.675, 0.901, 0.829, 0.558, 0.854, 0.914, 3.194, 2.976, 2.021, 0.623, 0.221, 3.837, 1.429, 2.925, 0.102, 1.787, 2.915, 3.486, 0.642, 0.346, 1.337, 3.363, 2.677, 0.903, 3.159, 1.245, 0.578, 0.959, 2.177, 0.844, 1.197, 1.27] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -16971,12 +16977,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -17023,6 +17023,12 @@ [3.019, 2.239, 0.81, 0.904, 0.851, 3.495, 2.9, 0.077, 3.584, 3.653, 0.299, 1.958, 2.417, 3.79, 1.676, 0.628, 3.08, 1.757, 3.614, 2.984, 2.65, 1.075, 2.407, 2.311, 2.223, 3.925, 1.399, 3.608, 0.336, 2.234, 0.799, 1.177, 3.425, 2.95, 0.818, 3.19, 2.114, 3.197, 0.936, 3.42, 0.585, 0.564, 0.762, 1.684, 3.064, 0.718, 2.486, 3.368, 3.569, 3.949, 1.878] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } } } ], @@ -17032,12 +17038,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 568.0, - "unit": "nm" - } } }, { @@ -17084,6 +17084,12 @@ [0.42, 1.23, 2.213, 2.62, 1.943, 3.831, 2.498, 2.68, 0.925, 2.095, 3.291, 3.741, 1.349, 2.854, 3.121, 2.533, 3.466, 2.972, 2.486, 2.513, 3.882, 0.82, 0.193, 2.398, 2.086, 0.313, 0.723, 3.247, 1.505, 1.439, 2.031, 0.039, 0.386, 0.356, 0.378, 3.947, 1.212, 0.33, 2.874, 3.358, 3.616, 0.517, 0.011, 1.324, 1.294, 0.822, 3.412, 2.829, 3.942, 2.185, 3.02] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } } } ], @@ -17093,12 +17099,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 559.0, - "unit": "nm" - } } }, { @@ -17145,6 +17145,12 @@ [0.395, 1.083, 1.436, 1.995, 3.599, 1.036, 3.814, 0.534, 1.63, 3.108, 3.251, 1.175, 3.485, 0.063, 3.252, 3.355, 0.993, 2.475, 3.174, 1.32, 3.135, 0.098, 3.127, 2.897, 3.365, 0.809, 2.869, 1.104, 1.263, 0.901, 1.893, 3.304, 3.319, 2.419, 1.635, 2.956, 2.949, 2.36, 0.779, 2.91, 1.397, 3.796, 1.244, 0.249, 0.364, 3.341, 0.525, 1.26, 2.041, 1.467, 2.418] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -17154,12 +17160,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -17206,6 +17206,12 @@ [0.354, 0.767, 0.864, 3.884, 0.296, 1.955, 2.539, 2.63, 2.79, 2.167, 2.71, 3.27, 0.728, 1.215, 3.946, 1.856, 1.066, 2.427, 0.296, 0.405, 2.633, 1.696, 0.264, 3.923, 3.339, 2.854, 2.878, 2.532, 0.023, 0.283, 1.608, 3.062, 3.795, 2.483, 1.539, 2.536, 2.454, 2.534, 1.339, 1.0, 0.409, 3.73, 1.989, 0.743, 2.687, 0.525, 0.515, 3.034, 0.417, 1.485, 3.459] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } } } ], @@ -17215,12 +17221,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 544.0, - "unit": "nm" - } } }, { @@ -17267,6 +17267,12 @@ [2.833, 1.745, 1.061, 3.785, 2.657, 0.503, 0.941, 0.545, 1.442, 3.077, 0.007, 2.606, 2.506, 0.559, 3.647, 3.475, 2.245, 3.675, 1.41, 3.401, 2.531, 1.088, 3.295, 3.995, 2.902, 3.707, 3.52, 1.235, 2.813, 2.338, 3.843, 2.114, 2.537, 0.824, 2.774, 1.317, 2.734, 2.697, 2.881, 2.032, 1.512, 1.989, 3.896, 1.923, 0.402, 1.123, 3.482, 0.184, 3.04, 1.05, 2.27] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -17276,12 +17282,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -17328,6 +17328,12 @@ [3.358, 3.007, 2.084, 0.927, 1.744, 2.45, 1.065, 0.882, 2.95, 0.983, 3.706, 1.731, 3.104, 3.233, 1.892, 0.069, 1.682, 1.784, 2.33, 0.74, 3.547, 0.794, 3.377, 1.888, 0.541, 1.192, 1.372, 3.593, 1.779, 0.224, 3.336, 2.194, 1.763, 0.067, 0.484, 3.106, 0.453, 3.896, 1.03, 2.866, 1.668, 1.815, 3.93, 1.049, 1.806, 0.258, 0.791, 2.689, 2.51, 1.054, 1.799] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } } } ], @@ -17337,12 +17343,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 520.0, - "unit": "nm" - } } }, { @@ -17389,6 +17389,12 @@ [2.399, 0.71, 0.309, 2.722, 2.564, 3.63, 0.196, 0.385, 0.551, 1.077, 1.472, 3.103, 2.725, 1.646, 1.511, 3.967, 3.036, 2.748, 2.785, 3.615, 1.785, 0.753, 3.463, 3.071, 1.732, 0.863, 2.327, 0.081, 0.283, 0.4, 2.683, 1.082, 0.724, 2.425, 0.936, 1.484, 1.454, 1.345, 1.92, 3.476, 0.257, 3.511, 0.479, 1.789, 0.196, 2.712, 1.204, 3.402, 0.295, 0.29, 1.755] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } } } ], @@ -17398,12 +17404,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 536.0, - "unit": "nm" - } } }, { @@ -17450,6 +17450,12 @@ [3.94, 3.724, 1.438, 0.013, 1.646, 1.247, 1.237, 0.99, 1.701, 1.302, 0.114, 0.101, 0.15, 2.394, 0.389, 2.378, 0.3, 0.709, 0.026, 2.513, 1.691, 0.828, 3.309, 3.358, 2.274, 0.274, 1.673, 2.875, 3.02, 3.658, 2.924, 3.786, 3.993, 2.645, 2.742, 1.358, 3.286, 2.411, 3.29, 0.237, 0.216, 0.354, 0.219, 2.173, 0.143, 3.409, 0.328, 3.394, 3.807, 0.334, 0.904] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } } } ], @@ -17459,12 +17465,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 520.0, - "unit": "nm" - } } }, { @@ -17511,6 +17511,12 @@ [2.693, 0.268, 1.776, 0.063, 3.112, 0.414, 2.079, 1.739, 1.372, 3.573, 2.362, 1.97, 2.042, 2.377, 0.327, 0.108, 1.504, 3.652, 3.031, 3.091, 1.888, 1.419, 3.789, 2.296, 1.336, 0.609, 1.135, 3.215, 2.864, 3.945, 2.279, 3.068, 2.685, 2.754, 0.231, 3.518, 2.216, 2.582, 3.63, 0.943, 1.206, 0.672, 1.918, 0.664, 1.854, 2.384, 2.176, 3.795, 3.815, 3.3, 2.823] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } } } ], @@ -17520,12 +17526,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 568.0, - "unit": "nm" - } } }, { @@ -17572,6 +17572,12 @@ [3.742, 0.775, 1.242, 3.015, 1.273, 0.478, 3.479, 2.726, 2.502, 3.279, 2.863, 2.874, 1.426, 1.293, 3.293, 3.284, 3.288, 2.146, 0.808, 1.892, 2.922, 0.021, 2.087, 1.884, 1.216, 3.5, 3.125, 0.442, 2.952, 2.433, 1.34, 3.4, 3.564, 1.121, 2.536, 2.292, 1.443, 3.738, 2.957, 3.04, 2.736, 3.855, 1.127, 1.664, 2.343, 1.798, 0.491, 3.37, 2.561, 3.1, 2.887] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -17581,12 +17587,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -17633,6 +17633,12 @@ [1.649, 3.007, 1.408, 3.901, 3.72, 2.687, 3.357, 1.799, 1.773, 1.353, 3.037, 3.774, 0.069, 1.938, 3.463, 3.31, 0.305, 2.756, 1.001, 1.84, 3.549, 3.188, 1.768, 3.155, 3.067, 2.894, 0.423, 3.541, 3.418, 3.009, 3.754, 1.88, 3.851, 3.545, 3.69, 0.392, 2.155, 1.22, 2.816, 3.604, 2.085, 1.939, 1.184, 1.686, 3.698, 0.08, 1.057, 3.725, 2.879, 2.487, 0.186] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } } } ], @@ -17642,12 +17648,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } } }, { @@ -17694,6 +17694,12 @@ [0.613, 1.559, 1.259, 3.338, 2.461, 1.239, 2.252, 0.833, 0.826, 2.264, 3.815, 2.38, 2.764, 1.598, 1.156, 3.923, 0.524, 2.248, 3.071, 1.154, 3.085, 3.94, 1.396, 3.754, 1.609, 2.003, 0.081, 3.456, 2.987, 1.836, 0.698, 0.662, 0.93, 2.822, 3.14, 0.32, 2.591, 0.206, 1.229, 3.152, 3.902, 0.387, 1.989, 1.34, 2.27, 3.558, 2.42, 0.088, 2.542, 0.156, 0.533] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } } } ], @@ -17703,12 +17709,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 559.0, - "unit": "nm" - } } }, { @@ -17755,6 +17755,12 @@ [1.476, 3.807, 1.333, 1.1, 0.673, 0.163, 1.504, 1.728, 0.457, 1.158, 2.796, 1.845, 2.99, 1.566, 3.153, 1.45, 3.941, 2.458, 0.835, 1.331, 0.317, 1.019, 3.918, 1.251, 2.698, 1.95, 0.056, 1.484, 2.051, 3.583, 3.993, 0.914, 2.83, 1.302, 3.221, 0.854, 3.596, 1.721, 2.467, 0.157, 1.087, 2.478, 0.772, 1.994, 1.106, 2.541, 2.999, 3.773, 3.117, 2.108, 2.479] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } } } ], @@ -17764,12 +17770,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 549.0, - "unit": "nm" - } } }, { @@ -17816,6 +17816,12 @@ [1.629, 1.706, 2.825, 0.215, 0.457, 3.889, 0.081, 2.402, 2.722, 0.106, 0.02, 3.677, 0.873, 1.165, 1.881, 3.015, 1.687, 2.344, 2.298, 1.853, 2.219, 3.99, 0.678, 0.244, 1.839, 0.246, 1.923, 0.144, 0.156, 2.95, 0.282, 2.367, 3.942, 1.104, 2.363, 3.208, 0.004, 1.087, 2.763, 0.964, 3.515, 3.319, 3.744, 0.05, 1.066, 2.801, 3.898, 0.829, 3.225, 3.526, 1.312] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } } } ], @@ -17825,12 +17831,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 561.0, - "unit": "nm" - } } }, { @@ -17877,6 +17877,12 @@ [1.428, 0.818, 0.254, 0.259, 1.639, 1.028, 2.581, 2.376, 0.211, 1.966, 3.936, 2.245, 3.771, 3.824, 1.652, 3.734, 3.769, 2.802, 2.673, 3.01, 0.599, 3.581, 1.333, 2.338, 2.9, 0.245, 0.627, 3.177, 3.038, 0.348, 1.094, 0.919, 0.63, 1.638, 2.853, 1.548, 3.688, 0.844, 0.723, 2.18, 1.423, 2.711, 2.552, 2.998, 3.578, 1.073, 3.973, 0.226, 3.413, 3.066, 0.129] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } } } ], @@ -17886,12 +17892,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 536.0, - "unit": "nm" - } } }, { @@ -17938,6 +17938,12 @@ [2.027, 0.551, 0.516, 0.712, 1.847, 3.485, 1.916, 1.359, 1.393, 0.4, 3.403, 3.337, 3.862, 0.871, 3.017, 1.615, 2.133, 0.97, 0.104, 0.046, 2.924, 2.078, 0.493, 1.586, 1.888, 1.029, 2.334, 2.76, 1.827, 0.272, 0.4, 3.763, 3.971, 0.219, 3.067, 0.368, 0.114, 0.925, 1.006, 2.063, 1.771, 3.485, 3.33, 1.779, 2.019, 3.373, 2.689, 2.127, 0.561, 3.457, 1.84] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -17947,12 +17953,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -17999,6 +17999,12 @@ [3.256, 3.309, 3.02, 1.204, 3.949, 0.058, 2.929, 2.823, 0.818, 1.15, 3.156, 3.532, 1.121, 3.999, 3.64, 3.366, 3.643, 1.804, 2.648, 1.5, 1.207, 3.963, 2.04, 2.274, 3.439, 2.747, 2.713, 3.566, 2.515, 2.339, 0.207, 2.198, 2.369, 2.432, 1.144, 0.453, 0.95, 3.014, 3.117, 0.309, 1.185, 2.101, 0.188, 0.912, 2.614, 3.952, 2.208, 1.779, 2.379, 0.007, 3.045] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -18008,12 +18014,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -18060,6 +18060,12 @@ [0.322, 1.912, 1.957, 0.632, 3.292, 1.269, 0.745, 1.765, 1.201, 1.345, 3.363, 0.308, 2.478, 0.943, 0.957, 1.163, 2.689, 2.855, 3.186, 2.415, 0.629, 2.686, 2.339, 0.315, 3.105, 3.774, 1.127, 3.659, 3.486, 0.539, 0.933, 1.186, 2.508, 3.293, 3.884, 0.286, 0.411, 1.799, 1.851, 3.184, 0.204, 1.249, 1.916, 2.963, 1.822, 1.793, 1.71, 3.969, 1.657, 2.789, 3.519] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } } } ], @@ -18069,12 +18075,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } } }, { @@ -18121,6 +18121,12 @@ [2.924, 3.193, 1.591, 2.416, 1.635, 3.572, 1.642, 1.527, 3.518, 0.141, 1.085, 2.278, 0.661, 0.411, 2.176, 1.8, 3.184, 1.058, 0.67, 0.751, 0.89, 1.004, 0.002, 2.21, 3.38, 0.77, 3.375, 2.493, 1.312, 2.064, 1.158, 2.002, 0.696, 1.02, 2.009, 1.993, 0.916, 0.877, 2.248, 0.714, 2.769, 0.272, 2.333, 3.042, 3.119, 2.97, 1.254, 2.551, 3.645, 3.992, 2.526] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } } } ], @@ -18130,12 +18136,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 568.0, - "unit": "nm" - } } }, { @@ -18182,6 +18182,12 @@ [2.91, 0.986, 2.038, 2.628, 1.92, 3.19, 3.381, 3.036, 0.865, 0.196, 3.148, 0.214, 1.453, 2.983, 3.083, 1.582, 3.641, 2.402, 0.182, 0.883, 2.306, 2.81, 3.956, 1.982, 0.618, 2.67, 0.959, 3.091, 0.41, 3.515, 0.823, 2.847, 1.319, 3.538, 2.248, 1.016, 2.658, 2.391, 0.088, 2.802, 1.535, 1.841, 1.382, 0.517, 3.62, 0.057, 0.879, 0.059, 0.035, 1.387, 1.612] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } } } ], @@ -18191,12 +18197,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 526.0, - "unit": "nm" - } } }, { @@ -18243,6 +18243,12 @@ [0.149, 3.463, 3.108, 0.219, 0.1, 1.03, 0.056, 2.01, 3.249, 2.231, 0.289, 2.625, 1.35, 3.372, 0.301, 2.895, 1.915, 0.734, 2.067, 2.923, 1.25, 2.313, 1.379, 3.348, 0.465, 1.427, 3.438, 2.361, 0.56, 1.791, 0.9, 3.055, 3.022, 1.902, 0.674, 3.383, 2.21, 3.319, 2.147, 3.986, 2.602, 0.38, 0.839, 0.571, 1.245, 3.215, 0.032, 1.145, 3.319, 1.162, 2.964] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } } } ], @@ -18252,12 +18258,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 559.0, - "unit": "nm" - } } }, { @@ -18304,6 +18304,12 @@ [3.324, 1.968, 2.463, 0.362, 1.835, 2.083, 3.76, 3.754, 2.673, 1.591, 1.694, 1.45, 1.458, 1.331, 1.233, 3.603, 3.447, 2.697, 0.917, 0.684, 2.596, 2.586, 2.08, 0.321, 0.87, 1.474, 0.808, 2.102, 1.249, 1.394, 2.293, 3.042, 3.398, 2.826, 1.575, 1.086, 0.558, 1.54, 2.839, 1.3, 2.45, 3.564, 3.474, 2.394, 0.907, 2.929, 3.381, 3.24, 0.011, 3.612, 0.584] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -18313,12 +18319,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -18365,6 +18365,12 @@ [2.447, 2.401, 0.478, 0.368, 0.737, 3.887, 2.142, 3.491, 0.361, 1.274, 1.657, 2.504, 1.278, 3.297, 2.652, 2.052, 2.631, 3.755, 0.147, 3.044, 1.907, 3.858, 3.617, 2.233, 3.031, 3.111, 3.686, 3.414, 1.94, 2.093, 1.568, 2.09, 1.636, 0.809, 3.846, 0.64, 2.92, 2.458, 0.837, 1.199, 2.416, 2.048, 2.478, 0.025, 0.793, 1.06, 2.196, 3.096, 2.254, 0.877, 0.75] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 546.0, + "unit": "nm" + } } } ], @@ -18374,12 +18380,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 546.0, - "unit": "nm" - } } }, { @@ -18426,6 +18426,12 @@ [3.484, 3.864, 0.568, 2.677, 2.588, 2.784, 2.244, 1.337, 1.625, 0.201, 2.727, 1.55, 2.268, 3.706, 3.566, 0.867, 0.468, 3.451, 2.011, 3.131, 0.172, 2.918, 2.948, 0.627, 3.858, 1.38, 3.591, 1.44, 1.97, 0.915, 0.589, 1.159, 1.063, 1.342, 2.084, 2.225, 1.068, 2.132, 1.258, 1.856, 0.675, 1.121, 3.211, 0.997, 3.688, 0.497, 0.21, 0.319, 1.226, 0.192, 1.728] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } } } ], @@ -18435,12 +18441,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 520.0, - "unit": "nm" - } } }, { @@ -18487,6 +18487,12 @@ [3.645, 0.243, 1.745, 0.577, 0.565, 0.916, 3.94, 2.818, 1.207, 3.192, 0.803, 3.366, 0.71, 3.612, 1.568, 0.487, 0.925, 1.621, 1.34, 3.798, 2.335, 2.193, 0.154, 2.456, 3.051, 3.706, 1.95, 0.939, 3.361, 1.17, 3.272, 0.213, 1.778, 3.187, 0.943, 0.916, 3.317, 0.765, 1.519, 1.309, 1.128, 3.314, 0.05, 2.664, 3.871, 1.754, 2.501, 1.385, 2.119, 0.009, 3.284] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } } } ], @@ -18496,12 +18502,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 544.0, - "unit": "nm" - } } }, { @@ -18548,6 +18548,12 @@ [2.697, 3.886, 0.393, 3.392, 1.452, 0.088, 3.289, 1.526, 0.858, 2.966, 3.0, 3.457, 0.037, 3.919, 0.59, 1.588, 1.523, 2.668, 0.652, 1.17, 0.159, 0.102, 0.031, 2.67, 3.021, 2.142, 1.49, 2.584, 1.296, 1.205, 0.565, 2.819, 3.351, 1.885, 0.575, 0.327, 1.384, 3.794, 3.491, 0.827, 0.028, 3.239, 0.66, 2.343, 2.128, 3.857, 0.013, 2.744, 3.281, 0.166, 0.977] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 530.0, + "unit": "nm" + } } } ], @@ -18557,12 +18563,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 530.0, - "unit": "nm" - } } }, { @@ -18609,6 +18609,12 @@ [2.716, 1.467, 2.839, 3.124, 2.594, 3.854, 1.723, 0.371, 3.309, 2.597, 0.705, 0.229, 3.652, 2.4, 0.18, 0.106, 2.151, 3.344, 0.262, 0.203, 1.728, 3.177, 3.824, 1.142, 0.92, 3.442, 1.688, 0.541, 3.164, 2.129, 2.745, 3.302, 1.13, 0.228, 1.849, 1.352, 0.511, 2.76, 1.98, 0.473, 3.661, 3.423, 0.181, 2.229, 3.322, 3.009, 1.007, 3.942, 1.947, 3.75, 1.861] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } } } ], @@ -18618,12 +18624,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 568.0, - "unit": "nm" - } } }, { @@ -18670,6 +18670,12 @@ [3.4, 3.019, 3.962, 3.248, 3.538, 1.642, 1.697, 2.204, 3.152, 2.166, 1.181, 1.207, 1.179, 3.852, 1.402, 3.099, 3.424, 0.551, 2.828, 3.594, 3.391, 1.363, 3.789, 0.542, 2.305, 2.996, 1.595, 1.819, 1.911, 2.435, 1.745, 2.594, 3.413, 0.268, 3.345, 0.283, 1.167, 0.979, 2.31, 3.71, 2.814, 0.556, 2.828, 2.306, 2.479, 2.216, 3.002, 2.377, 1.92, 3.91, 1.582] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 523.0, + "unit": "nm" + } } } ], @@ -18679,12 +18685,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 523.0, - "unit": "nm" - } } }, { @@ -18731,6 +18731,12 @@ [3.391, 3.118, 0.156, 2.47, 2.037, 3.229, 3.42, 0.942, 0.542, 0.047, 3.877, 0.292, 0.717, 0.42, 2.587, 1.793, 0.91, 0.506, 1.118, 1.932, 2.445, 2.24, 3.118, 0.78, 2.834, 2.534, 1.482, 2.063, 0.089, 3.994, 3.217, 3.898, 2.001, 0.852, 2.354, 3.475, 3.256, 1.798, 1.308, 1.054, 1.746, 0.036, 1.768, 3.662, 2.936, 0.263, 2.111, 1.886, 3.891, 0.422, 2.091] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } } } ], @@ -18740,12 +18746,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 550.0, - "unit": "nm" - } } }, { @@ -18792,6 +18792,12 @@ [1.871, 0.802, 1.977, 3.137, 1.151, 0.0, 3.376, 3.635, 3.502, 1.746, 1.357, 0.853, 0.548, 0.83, 3.979, 2.291, 3.864, 2.066, 3.112, 2.536, 3.112, 3.198, 0.064, 0.185, 2.408, 0.471, 3.455, 1.843, 2.57, 0.422, 3.596, 2.171, 3.667, 1.902, 1.346, 3.096, 0.023, 1.714, 1.202, 3.474, 3.88, 2.162, 1.805, 3.307, 0.389, 3.183, 1.22, 2.832, 2.957, 1.972, 2.247] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -18801,12 +18807,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -18853,6 +18853,12 @@ [3.819, 0.779, 1.885, 2.978, 2.672, 0.737, 1.792, 0.729, 0.679, 0.545, 1.532, 1.065, 3.079, 2.15, 3.186, 1.186, 2.645, 3.483, 0.882, 2.267, 2.15, 0.863, 3.637, 2.656, 0.95, 1.392, 0.757, 3.796, 3.225, 3.251, 0.622, 2.886, 0.598, 2.175, 3.776, 1.391, 1.781, 2.924, 2.673, 2.358, 2.23, 0.985, 0.523, 2.929, 2.347, 1.097, 2.726, 1.156, 1.202, 1.996, 2.574] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } } } ], @@ -18862,12 +18868,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 548.0, - "unit": "nm" - } } }, { @@ -18914,6 +18914,12 @@ [3.349, 2.074, 3.704, 0.096, 2.956, 1.142, 3.228, 2.028, 1.28, 3.98, 1.996, 1.503, 1.428, 3.922, 2.646, 0.466, 0.903, 2.373, 1.794, 3.404, 3.72, 0.81, 2.523, 0.037, 1.164, 0.34, 0.707, 0.309, 3.853, 2.665, 3.6, 2.593, 1.228, 0.676, 1.273, 0.811, 0.893, 2.079, 0.82, 0.248, 2.552, 0.896, 1.393, 2.378, 0.234, 3.481, 3.095, 3.007, 3.7, 0.63, 1.822] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } } } ], @@ -18923,12 +18929,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 549.0, - "unit": "nm" - } } }, { @@ -18975,6 +18975,12 @@ [2.783, 3.408, 2.591, 2.853, 2.538, 3.55, 3.667, 2.932, 2.616, 0.435, 2.919, 2.174, 2.614, 0.38, 3.403, 0.275, 0.751, 2.649, 1.834, 3.573, 2.824, 1.553, 1.545, 0.852, 2.824, 3.417, 0.145, 3.802, 1.683, 1.244, 1.7, 0.608, 3.223, 0.843, 0.817, 3.184, 2.636, 1.822, 2.734, 1.261, 1.225, 3.146, 2.203, 3.813, 3.633, 2.721, 2.778, 1.997, 0.83, 3.206, 2.343] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 564.0, + "unit": "nm" + } } } ], @@ -18984,12 +18990,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 564.0, - "unit": "nm" - } } }, { @@ -19036,6 +19036,12 @@ [0.357, 1.866, 1.056, 2.998, 1.229, 1.862, 1.739, 0.029, 3.121, 3.404, 3.864, 1.249, 1.371, 2.735, 2.311, 2.951, 1.771, 3.563, 0.218, 1.638, 2.929, 3.914, 0.573, 2.347, 3.677, 3.35, 1.732, 1.218, 0.102, 0.638, 2.147, 2.972, 2.476, 2.901, 1.342, 2.742, 2.166, 1.844, 3.587, 1.322, 0.896, 1.793, 3.613, 1.856, 1.361, 1.897, 0.832, 1.078, 1.322, 3.77, 1.007] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } } } ], @@ -19045,12 +19051,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 529.0, - "unit": "nm" - } } }, { @@ -19097,6 +19097,12 @@ [2.434, 0.612, 1.568, 3.414, 0.443, 1.292, 2.709, 3.32, 1.879, 0.129, 0.521, 3.926, 2.482, 1.257, 0.892, 2.772, 2.469, 1.392, 3.568, 0.785, 3.926, 3.975, 2.895, 0.741, 1.135, 0.3, 2.717, 0.986, 1.779, 2.518, 0.653, 3.896, 0.332, 3.63, 3.713, 2.359, 0.908, 3.487, 0.898, 1.449, 3.456, 2.523, 1.708, 1.193, 0.375, 1.866, 1.13, 0.599, 0.468, 3.125, 2.362] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -19106,12 +19112,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -19158,6 +19158,12 @@ [3.685, 1.753, 2.984, 1.081, 2.458, 1.716, 0.827, 2.278, 0.142, 2.575, 1.722, 1.541, 3.361, 3.475, 0.624, 3.593, 2.852, 1.543, 2.532, 1.864, 2.982, 0.493, 2.119, 1.328, 1.402, 2.267, 1.702, 0.365, 3.269, 3.17, 2.117, 0.518, 2.654, 0.155, 0.967, 2.142, 1.348, 2.549, 1.254, 0.643, 0.081, 1.209, 0.756, 2.873, 1.734, 0.982, 2.346, 1.717, 3.751, 2.272, 2.278] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } } } ], @@ -19167,12 +19173,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 520.0, - "unit": "nm" - } } }, { @@ -19219,6 +19219,12 @@ [3.055, 1.935, 1.261, 3.379, 3.192, 3.634, 1.656, 3.678, 0.191, 0.013, 0.461, 3.008, 0.972, 0.457, 1.204, 2.887, 3.205, 2.508, 2.481, 2.245, 0.303, 0.289, 1.889, 1.783, 1.773, 3.737, 3.245, 3.594, 0.42, 3.92, 3.985, 0.614, 0.996, 0.892, 3.062, 2.582, 1.393, 0.776, 1.775, 2.508, 3.692, 2.87, 1.063, 0.629, 3.619, 2.2, 3.784, 2.416, 0.529, 2.095, 3.141] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 546.0, + "unit": "nm" + } } } ], @@ -19228,12 +19234,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 546.0, - "unit": "nm" - } } }, { @@ -19280,6 +19280,12 @@ [3.209, 1.269, 0.026, 1.974, 2.766, 0.045, 3.477, 1.606, 3.454, 0.389, 2.061, 3.258, 0.27, 0.028, 3.847, 2.012, 0.08, 1.395, 2.621, 1.494, 2.429, 0.732, 3.973, 2.553, 1.432, 3.225, 1.26, 2.163, 3.573, 3.953, 0.829, 3.065, 2.325, 0.779, 0.776, 3.345, 0.969, 2.917, 0.295, 2.537, 1.915, 3.17, 2.321, 2.118, 1.63, 3.612, 0.792, 0.6, 3.772, 0.188, 3.704] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } } } ], @@ -19289,12 +19295,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 548.0, - "unit": "nm" - } } }, { @@ -19341,6 +19341,12 @@ [1.02, 1.907, 0.601, 0.712, 2.476, 1.295, 1.473, 0.541, 3.54, 2.785, 1.313, 2.033, 3.501, 3.56, 2.996, 0.933, 3.491, 3.252, 0.502, 1.042, 1.162, 1.099, 0.084, 3.578, 3.259, 2.41, 1.854, 0.923, 1.82, 2.433, 0.659, 2.391, 3.385, 0.249, 3.808, 1.157, 1.723, 0.067, 2.299, 2.049, 3.496, 2.375, 0.755, 3.751, 0.601, 1.136, 2.82, 2.558, 2.633, 2.678, 1.301] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -19350,12 +19356,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -19402,6 +19402,12 @@ [1.348, 3.269, 3.145, 2.541, 3.92, 1.822, 1.022, 1.453, 0.066, 3.44, 0.549, 2.72, 1.106, 2.126, 2.921, 2.648, 3.251, 3.751, 1.838, 3.209, 3.423, 0.952, 2.452, 1.545, 2.786, 0.343, 0.332, 2.977, 2.122, 3.59, 3.296, 2.289, 3.142, 1.131, 3.31, 3.121, 0.239, 1.707, 3.887, 3.335, 0.701, 2.614, 2.233, 2.609, 2.946, 3.655, 3.648, 1.625, 1.679, 2.488, 3.568] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } } } ], @@ -19411,12 +19417,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 570.0, - "unit": "nm" - } } }, { @@ -19463,6 +19463,12 @@ [2.806, 0.795, 3.469, 1.877, 0.395, 0.817, 1.599, 3.755, 3.576, 1.489, 2.044, 3.331, 0.475, 0.143, 2.26, 3.578, 3.975, 2.815, 3.8, 2.408, 1.543, 3.864, 2.503, 2.507, 0.809, 2.719, 3.843, 2.599, 3.131, 0.695, 2.707, 1.297, 3.633, 0.021, 0.49, 1.493, 3.673, 3.254, 2.915, 2.304, 2.639, 1.952, 0.31, 1.845, 2.657, 3.282, 1.757, 2.465, 0.685, 0.076, 3.673] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -19472,12 +19478,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -19524,6 +19524,12 @@ [2.81, 1.879, 0.079, 2.025, 2.942, 2.292, 0.961, 1.067, 1.675, 0.973, 3.0, 0.623, 2.881, 2.782, 0.746, 3.697, 0.454, 3.653, 0.766, 3.905, 0.72, 3.899, 1.495, 3.769, 3.59, 3.553, 0.657, 3.85, 1.526, 0.962, 1.378, 1.913, 3.054, 1.021, 3.896, 3.418, 3.553, 1.996, 1.547, 3.201, 2.711, 2.186, 1.239, 1.33, 3.639, 1.328, 1.429, 3.063, 1.91, 3.585, 1.303] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } } } ], @@ -19533,12 +19539,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 544.0, - "unit": "nm" - } } }, { @@ -19585,6 +19585,12 @@ [2.811, 3.919, 0.171, 2.953, 2.91, 0.383, 0.31, 2.434, 3.389, 1.634, 1.111, 3.54, 0.713, 3.595, 1.087, 1.569, 1.86, 2.885, 1.328, 0.144, 2.457, 2.105, 1.565, 1.194, 2.533, 2.66, 0.165, 0.129, 2.262, 2.124, 1.594, 1.94, 1.941, 3.658, 2.566, 1.994, 2.882, 2.068, 0.985, 3.034, 3.242, 3.561, 2.158, 1.566, 1.599, 2.646, 0.525, 1.734, 2.552, 3.759, 3.568] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } } } ], @@ -19594,12 +19600,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 570.0, - "unit": "nm" - } } }, { @@ -19646,6 +19646,12 @@ [0.177, 0.581, 3.441, 2.845, 0.705, 2.354, 2.977, 0.419, 0.249, 0.218, 0.18, 0.172, 1.265, 0.04, 3.171, 1.599, 1.054, 1.029, 3.093, 2.686, 3.792, 1.899, 2.293, 0.901, 2.895, 3.947, 3.998, 3.594, 3.887, 2.135, 2.43, 1.577, 2.502, 2.555, 1.416, 1.358, 2.5, 0.813, 1.86, 3.639, 3.905, 1.648, 0.735, 2.816, 3.061, 3.389, 0.893, 1.525, 2.428, 1.046, 3.47] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 546.0, + "unit": "nm" + } } } ], @@ -19655,12 +19661,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 546.0, - "unit": "nm" - } } }, { @@ -19707,6 +19707,12 @@ [0.705, 3.459, 1.072, 3.776, 2.277, 2.288, 2.539, 3.949, 0.758, 2.355, 3.383, 0.531, 2.114, 1.788, 2.602, 1.669, 2.71, 2.624, 1.813, 3.098, 0.241, 3.168, 3.453, 2.781, 2.143, 1.163, 3.477, 1.839, 3.506, 3.053, 2.472, 1.165, 2.84, 2.664, 1.724, 2.118, 1.43, 2.778, 3.138, 3.069, 3.961, 0.864, 1.101, 1.284, 0.522, 1.117, 2.621, 1.027, 0.459, 1.72, 2.183] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } } } ], @@ -19716,12 +19722,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 559.0, - "unit": "nm" - } } }, { @@ -19768,6 +19768,12 @@ [2.901, 0.615, 1.948, 3.229, 1.536, 0.005, 2.291, 1.633, 1.113, 2.81, 0.699, 0.442, 1.705, 3.882, 2.217, 1.69, 3.45, 0.063, 0.484, 0.239, 3.931, 3.485, 2.743, 3.137, 3.376, 2.066, 2.169, 2.259, 1.025, 2.542, 2.449, 1.38, 1.786, 0.87, 3.571, 0.55, 0.892, 3.435, 0.187, 2.113, 3.138, 1.144, 2.024, 0.258, 3.261, 0.421, 3.396, 1.401, 2.304, 3.426, 3.171] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -19777,12 +19783,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -19829,6 +19829,12 @@ [0.964, 3.974, 1.48, 2.251, 3.415, 1.871, 2.81, 3.852, 3.47, 1.836, 0.032, 0.607, 2.571, 0.36, 3.319, 2.656, 0.834, 0.311, 1.667, 0.798, 0.015, 3.875, 2.371, 1.1, 2.787, 1.46, 2.484, 3.876, 2.955, 2.67, 0.767, 3.954, 1.599, 3.371, 1.485, 1.405, 0.305, 2.618, 0.156, 2.678, 2.081, 3.582, 0.717, 0.276, 3.106, 0.536, 3.453, 3.898, 3.941, 1.764, 2.561] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 567.0, + "unit": "nm" + } } } ], @@ -19838,12 +19844,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 567.0, - "unit": "nm" - } } }, { @@ -19890,6 +19890,12 @@ [1.089, 0.637, 2.627, 3.156, 1.088, 1.603, 0.38, 3.464, 1.954, 3.387, 2.934, 0.897, 0.799, 1.068, 0.077, 3.008, 3.199, 2.875, 1.913, 2.351, 2.216, 0.155, 2.988, 2.716, 0.432, 3.158, 2.094, 1.993, 2.25, 2.007, 2.586, 3.934, 1.19, 0.108, 3.678, 3.317, 2.971, 0.215, 0.397, 3.801, 3.925, 3.154, 2.201, 3.291, 3.147, 2.685, 3.917, 3.207, 3.029, 1.528, 0.253] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 560.0, + "unit": "nm" + } } } ], @@ -19899,12 +19905,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 560.0, - "unit": "nm" - } } }, { @@ -19951,6 +19951,12 @@ [1.023, 2.028, 3.413, 0.345, 0.934, 1.648, 3.911, 2.723, 1.929, 3.509, 2.386, 1.213, 3.946, 0.8, 2.999, 3.706, 0.691, 1.39, 0.76, 0.036, 2.984, 2.477, 2.111, 2.425, 3.062, 1.953, 3.696, 3.569, 1.747, 3.24, 2.886, 2.964, 0.722, 1.753, 1.563, 1.906, 1.776, 3.763, 2.743, 1.668, 3.06, 1.492, 2.467, 0.292, 1.539, 1.94, 2.254, 2.491, 0.147, 2.978, 3.226] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } } } ], @@ -19960,12 +19966,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 570.0, - "unit": "nm" - } } }, { @@ -20012,6 +20012,12 @@ [1.817, 2.268, 1.491, 1.269, 2.545, 3.916, 0.988, 1.282, 2.98, 1.952, 0.341, 0.976, 2.689, 0.622, 3.421, 0.491, 2.193, 3.237, 1.093, 1.93, 0.927, 2.646, 3.092, 0.976, 1.492, 0.009, 1.819, 0.886, 1.122, 3.698, 1.205, 3.421, 2.768, 0.013, 1.069, 0.696, 3.231, 0.483, 3.017, 1.99, 0.788, 2.48, 3.763, 3.715, 2.718, 0.515, 3.778, 3.67, 2.117, 1.448, 0.061] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } } } ], @@ -20021,12 +20027,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } } }, { @@ -20073,6 +20073,12 @@ [3.254, 3.054, 1.048, 2.298, 3.17, 3.175, 0.514, 3.777, 2.536, 2.097, 0.101, 0.16, 3.281, 0.746, 0.919, 2.207, 2.676, 3.552, 2.725, 1.26, 1.709, 0.219, 3.103, 1.141, 2.447, 2.883, 3.376, 2.257, 0.976, 0.231, 2.148, 2.768, 3.673, 3.637, 1.951, 0.367, 1.72, 1.714, 1.898, 1.52, 2.716, 0.706, 0.481, 3.892, 0.686, 2.319, 0.481, 2.969, 1.798, 2.308, 1.101] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 552.0, + "unit": "nm" + } } } ], @@ -20082,12 +20088,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 552.0, - "unit": "nm" - } } }, { @@ -20134,6 +20134,12 @@ [0.117, 3.392, 0.188, 2.351, 3.034, 3.951, 3.906, 3.851, 0.287, 3.799, 2.257, 2.801, 2.304, 3.948, 1.332, 0.487, 3.644, 2.794, 0.552, 0.486, 0.961, 1.654, 1.204, 2.543, 1.003, 3.737, 3.21, 0.454, 0.127, 2.402, 0.406, 0.458, 2.667, 3.129, 2.031, 3.376, 3.485, 1.285, 2.916, 0.415, 1.813, 1.863, 1.611, 1.721, 0.459, 1.904, 2.176, 3.944, 3.353, 1.832, 0.837] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } } } ], @@ -20143,12 +20149,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 526.0, - "unit": "nm" - } } }, { @@ -20195,6 +20195,12 @@ [0.174, 1.246, 1.822, 0.14, 2.463, 2.188, 1.645, 1.348, 3.297, 0.741, 3.451, 3.723, 1.885, 3.392, 1.798, 0.134, 3.174, 1.916, 1.956, 1.002, 2.358, 3.877, 0.137, 2.672, 3.098, 0.042, 3.482, 2.083, 3.098, 1.56, 3.265, 1.101, 2.294, 1.565, 0.232, 3.212, 0.845, 2.989, 3.568, 1.188, 1.839, 3.936, 3.619, 3.674, 2.362, 2.139, 3.726, 2.329, 2.661, 1.77, 3.002] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 562.0, + "unit": "nm" + } } } ], @@ -20204,12 +20210,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 562.0, - "unit": "nm" - } } }, { @@ -20256,6 +20256,12 @@ [2.027, 1.397, 0.83, 2.478, 0.297, 1.108, 3.149, 1.041, 2.42, 2.705, 3.561, 2.25, 1.736, 1.475, 2.35, 1.429, 0.319, 3.16, 2.586, 3.289, 0.185, 2.348, 0.767, 3.162, 2.421, 0.258, 0.462, 0.31, 0.959, 0.316, 1.153, 3.422, 1.328, 2.558, 1.237, 3.703, 1.464, 3.086, 3.934, 2.103, 1.695, 1.947, 1.147, 2.483, 2.278, 1.686, 1.883, 2.198, 0.011, 0.709, 3.406] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 538.0, + "unit": "nm" + } } } ], @@ -20265,12 +20271,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 538.0, - "unit": "nm" - } } }, { @@ -20317,6 +20317,12 @@ [3.169, 0.074, 2.481, 2.816, 3.679, 0.629, 1.668, 0.057, 0.038, 0.645, 2.839, 0.082, 2.103, 1.552, 0.138, 0.921, 3.177, 0.237, 2.646, 3.964, 1.233, 3.225, 0.482, 1.593, 2.238, 1.2, 2.284, 0.883, 0.734, 2.375, 2.263, 0.298, 0.249, 0.91, 1.983, 3.348, 2.847, 3.742, 1.558, 3.074, 3.795, 3.029, 3.896, 1.457, 2.856, 1.865, 3.043, 0.93, 2.14, 0.764, 2.705] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } } } ], @@ -20326,12 +20332,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 561.0, - "unit": "nm" - } } }, { @@ -20378,6 +20378,12 @@ [1.961, 1.364, 0.745, 2.172, 3.944, 3.592, 0.887, 0.578, 2.479, 2.344, 0.785, 3.322, 1.663, 2.382, 2.54, 3.832, 1.193, 3.568, 0.79, 2.074, 3.435, 2.679, 3.572, 0.169, 2.204, 3.329, 3.024, 2.737, 0.373, 2.156, 1.354, 2.742, 3.969, 3.67, 0.302, 2.933, 3.504, 2.737, 2.039, 3.755, 1.96, 3.163, 3.078, 0.729, 3.01, 3.706, 2.232, 3.075, 0.315, 2.032, 1.85] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 552.0, + "unit": "nm" + } } } ], @@ -20387,12 +20393,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 552.0, - "unit": "nm" - } } }, { @@ -20439,6 +20439,12 @@ [1.362, 1.35, 2.69, 3.269, 3.281, 1.792, 0.576, 3.968, 0.615, 0.567, 2.149, 0.205, 0.322, 0.99, 2.042, 3.352, 1.993, 2.079, 3.606, 0.328, 2.456, 1.528, 1.034, 0.114, 0.271, 3.6, 2.842, 1.158, 2.497, 1.096, 3.949, 2.422, 2.34, 0.306, 3.991, 1.391, 1.279, 0.401, 1.02, 1.141, 2.928, 2.768, 1.424, 3.187, 3.81, 2.958, 2.756, 3.739, 0.967, 0.354, 0.239] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 564.0, + "unit": "nm" + } } } ], @@ -20448,12 +20454,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 564.0, - "unit": "nm" - } } }, { @@ -20500,6 +20500,12 @@ [0.996, 0.708, 1.703, 3.394, 3.833, 0.316, 2.575, 2.997, 3.681, 2.949, 3.417, 1.471, 3.518, 0.618, 3.727, 1.864, 0.016, 0.998, 0.651, 2.073, 1.592, 1.058, 2.465, 1.4, 3.687, 0.104, 1.846, 0.304, 1.312, 0.844, 3.102, 0.19, 2.143, 0.857, 2.952, 1.713, 0.637, 0.911, 0.157, 1.075, 2.704, 1.403, 1.339, 2.191, 3.51, 1.297, 1.906, 2.569, 0.083, 1.094, 2.739] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } } } ], @@ -20509,12 +20515,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 529.0, - "unit": "nm" - } } }, { @@ -20561,6 +20561,12 @@ [2.74, 0.316, 2.281, 2.646, 3.937, 2.243, 0.303, 3.707, 3.729, 2.469, 2.271, 1.684, 2.836, 3.847, 3.226, 3.327, 2.66, 1.665, 2.013, 1.226, 3.104, 0.84, 3.575, 3.368, 0.188, 3.718, 0.273, 1.889, 2.389, 2.198, 3.277, 0.22, 0.218, 2.104, 0.362, 3.874, 3.862, 2.21, 3.015, 3.47, 0.334, 1.204, 0.428, 2.605, 0.432, 3.719, 2.502, 2.344, 0.283, 1.97, 3.245] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 528.0, + "unit": "nm" + } } } ], @@ -20570,12 +20576,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 528.0, - "unit": "nm" - } } }, { @@ -20622,6 +20622,12 @@ [0.903, 2.07, 3.868, 3.634, 1.899, 0.74, 2.912, 2.457, 0.218, 1.969, 2.413, 1.317, 1.531, 3.191, 2.05, 1.466, 0.732, 3.485, 3.352, 3.465, 0.45, 2.65, 2.542, 0.892, 1.899, 0.412, 0.97, 2.936, 0.469, 1.216, 1.929, 1.605, 0.418, 2.952, 2.374, 2.15, 0.35, 2.469, 2.462, 3.133, 0.95, 3.752, 2.796, 1.501, 1.92, 3.886, 2.897, 3.414, 2.381, 2.252, 1.77] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 538.0, + "unit": "nm" + } } } ], @@ -20631,12 +20637,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 538.0, - "unit": "nm" - } } }, { @@ -20683,6 +20683,12 @@ [2.859, 0.931, 2.505, 2.795, 2.253, 3.527, 2.975, 1.735, 1.487, 3.77, 3.976, 1.988, 3.002, 0.039, 0.807, 0.899, 2.578, 0.817, 3.9, 1.115, 2.262, 1.022, 0.218, 2.514, 0.697, 3.853, 1.041, 2.971, 2.012, 1.515, 1.555, 0.554, 2.216, 3.445, 3.07, 0.674, 1.913, 0.157, 0.121, 2.622, 1.374, 0.734, 0.974, 3.363, 0.974, 1.764, 3.793, 1.461, 1.113, 2.987, 0.318] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 530.0, + "unit": "nm" + } } } ], @@ -20692,12 +20698,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 530.0, - "unit": "nm" - } } }, { @@ -20744,6 +20744,12 @@ [2.596, 2.481, 1.136, 3.508, 1.836, 0.713, 3.99, 2.097, 2.399, 2.486, 0.004, 3.722, 3.971, 2.214, 3.422, 3.771, 3.556, 0.969, 0.133, 2.985, 2.42, 0.696, 1.278, 3.741, 1.527, 0.048, 0.854, 1.54, 2.932, 0.06, 3.579, 1.858, 3.025, 1.196, 2.959, 2.072, 1.079, 3.937, 1.234, 3.96, 1.922, 2.06, 1.722, 0.135, 1.369, 1.012, 1.002, 1.149, 1.551, 1.993, 0.237] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -20753,12 +20759,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -20805,6 +20805,12 @@ [0.492, 0.979, 0.001, 1.897, 1.9, 1.202, 1.395, 1.981, 1.787, 3.858, 2.449, 3.164, 2.339, 2.907, 2.146, 0.697, 2.774, 3.255, 1.349, 2.691, 3.619, 3.735, 0.172, 1.063, 0.36, 2.974, 1.142, 2.371, 0.515, 3.045, 3.705, 3.988, 0.939, 3.822, 3.087, 0.878, 3.023, 3.298, 1.058, 0.87, 3.684, 1.956, 3.446, 0.102, 3.473, 2.895, 3.383, 1.228, 3.223, 0.315, 2.227] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } } } ], @@ -20814,12 +20820,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 550.0, - "unit": "nm" - } } }, { @@ -20866,6 +20866,12 @@ [1.893, 0.202, 3.301, 0.617, 0.757, 0.806, 2.938, 1.537, 2.926, 0.06, 3.023, 1.465, 2.742, 0.152, 2.46, 2.225, 2.516, 3.819, 1.268, 1.673, 3.476, 2.196, 0.479, 3.007, 1.663, 0.289, 0.07, 1.59, 1.465, 3.591, 3.914, 3.148, 0.2, 0.817, 1.812, 3.786, 1.638, 3.205, 2.33, 0.071, 0.084, 1.761, 2.132, 0.809, 0.66, 0.49, 0.703, 3.95, 1.012, 0.669, 0.866] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } } } ], @@ -20875,12 +20881,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 550.0, - "unit": "nm" - } } }, { @@ -20927,6 +20927,12 @@ [1.408, 1.955, 2.641, 2.751, 3.697, 3.723, 0.294, 2.953, 0.467, 0.736, 1.348, 0.071, 3.334, 0.145, 3.875, 1.265, 1.925, 2.34, 2.674, 0.587, 3.31, 1.489, 1.196, 1.588, 1.714, 0.063, 3.669, 2.346, 1.173, 3.585, 0.12, 0.577, 0.795, 2.724, 2.505, 1.193, 1.558, 2.065, 2.114, 0.062, 1.343, 0.251, 1.862, 3.335, 2.736, 1.69, 2.797, 0.664, 0.784, 3.224, 2.778] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 524.0, + "unit": "nm" + } } } ], @@ -20936,12 +20942,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 524.0, - "unit": "nm" - } } }, { @@ -20988,6 +20988,12 @@ [1.609, 2.337, 0.082, 1.556, 3.918, 0.759, 1.052, 1.037, 3.633, 0.054, 1.948, 1.78, 0.882, 0.616, 0.77, 3.275, 0.61, 1.639, 2.682, 3.706, 3.859, 0.225, 2.612, 3.243, 3.059, 3.627, 1.86, 2.852, 0.024, 1.265, 3.004, 1.561, 1.949, 0.807, 2.51, 2.239, 0.713, 1.168, 2.587, 0.434, 0.506, 1.027, 2.481, 0.007, 3.395, 2.471, 0.979, 2.718, 1.965, 2.414, 2.187] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } } } ], @@ -20997,12 +21003,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } } }, { @@ -21049,6 +21049,12 @@ [3.024, 2.102, 3.517, 2.918, 1.383, 3.725, 0.838, 2.496, 0.291, 2.898, 2.199, 1.013, 2.367, 1.049, 0.386, 3.831, 0.074, 2.106, 2.53, 2.562, 3.442, 3.052, 2.248, 3.2, 2.831, 1.744, 2.604, 3.848, 0.588, 2.647, 3.142, 0.886, 1.609, 3.078, 3.98, 3.458, 2.432, 1.889, 1.126, 2.514, 3.874, 2.671, 2.295, 1.536, 2.306, 0.014, 0.113, 2.957, 3.008, 2.639, 0.904] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 554.0, + "unit": "nm" + } } } ], @@ -21058,12 +21064,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 554.0, - "unit": "nm" - } } }, { @@ -21110,6 +21110,12 @@ [0.612, 3.435, 3.851, 2.745, 3.971, 3.854, 0.316, 0.086, 3.639, 1.12, 0.989, 1.908, 1.643, 3.755, 1.313, 3.403, 3.289, 1.069, 0.927, 1.398, 2.185, 0.979, 0.016, 2.687, 0.77, 0.756, 0.712, 0.893, 2.817, 1.63, 3.646, 0.84, 1.948, 1.742, 2.529, 1.451, 1.757, 0.333, 0.009, 3.604, 2.115, 1.802, 1.486, 1.393, 2.884, 0.762, 0.652, 1.78, 0.993, 0.611, 0.824] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 524.0, + "unit": "nm" + } } } ], @@ -21119,12 +21125,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 524.0, - "unit": "nm" - } } }, { @@ -21171,6 +21171,12 @@ [1.888, 2.08, 1.241, 2.719, 3.632, 3.419, 1.164, 1.974, 3.214, 3.141, 3.423, 1.268, 2.009, 1.474, 0.149, 3.96, 3.901, 1.226, 3.862, 1.645, 2.955, 1.059, 1.322, 3.283, 0.383, 3.492, 2.622, 3.802, 0.008, 0.104, 2.932, 3.9, 2.206, 0.805, 1.757, 2.759, 0.707, 3.023, 2.896, 2.032, 0.593, 2.359, 0.794, 0.463, 2.691, 0.533, 3.477, 3.919, 2.735, 0.802, 0.751] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 567.0, + "unit": "nm" + } } } ], @@ -21180,12 +21186,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 567.0, - "unit": "nm" - } } }, { @@ -21232,6 +21232,12 @@ [0.554, 1.13, 2.965, 1.869, 0.829, 0.758, 1.957, 2.335, 0.14, 0.796, 1.361, 1.965, 3.11, 0.209, 3.523, 3.062, 1.204, 3.716, 1.39, 3.253, 0.877, 2.329, 1.83, 1.051, 0.596, 0.265, 0.859, 0.592, 3.849, 0.015, 2.703, 1.067, 3.206, 3.353, 2.378, 2.769, 3.24, 2.936, 0.928, 2.001, 2.749, 0.687, 2.756, 1.235, 3.231, 0.393, 1.684, 0.254, 3.168, 1.471, 2.273] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 556.0, + "unit": "nm" + } } } ], @@ -21241,12 +21247,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 556.0, - "unit": "nm" - } } }, { @@ -21293,6 +21293,12 @@ [0.202, 1.344, 1.548, 3.873, 2.224, 3.3, 1.913, 1.272, 0.563, 3.898, 1.365, 2.486, 0.124, 2.092, 0.294, 2.759, 3.756, 1.831, 0.753, 3.821, 2.268, 2.788, 3.389, 0.503, 0.189, 3.572, 0.594, 1.819, 0.203, 2.58, 0.605, 1.423, 2.378, 1.742, 2.501, 3.722, 1.657, 3.479, 0.153, 3.468, 1.327, 1.663, 0.364, 2.102, 1.384, 2.2, 2.631, 3.143, 2.937, 1.633, 1.927] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } } } ], @@ -21302,12 +21308,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 536.0, - "unit": "nm" - } } }, { @@ -21354,6 +21354,12 @@ [2.422, 2.414, 1.649, 0.005, 1.413, 1.955, 1.045, 3.683, 2.651, 2.706, 0.093, 1.069, 1.983, 3.293, 3.941, 0.108, 2.382, 3.591, 0.571, 1.102, 0.277, 1.677, 1.285, 2.494, 0.604, 2.423, 1.286, 3.118, 1.989, 0.941, 1.451, 2.882, 2.569, 0.652, 2.182, 3.008, 0.728, 1.737, 1.087, 1.767, 0.611, 3.795, 1.501, 0.762, 1.233, 0.594, 2.381, 2.808, 1.443, 2.092, 0.249] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -21363,12 +21369,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -21415,6 +21415,12 @@ [3.551, 2.366, 0.531, 1.65, 0.745, 1.129, 3.154, 3.4, 2.99, 0.668, 1.926, 1.694, 1.71, 1.255, 1.211, 2.499, 1.33, 1.111, 0.932, 3.379, 0.644, 2.503, 2.803, 0.49, 0.481, 0.175, 0.523, 1.26, 0.01, 0.042, 2.478, 1.675, 3.896, 0.691, 1.899, 0.515, 2.037, 3.002, 1.437, 1.879, 1.574, 2.336, 2.097, 1.099, 2.684, 2.1, 3.791, 3.506, 0.022, 2.094, 1.051] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -21424,12 +21430,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -21476,6 +21476,12 @@ [1.697, 0.51, 2.713, 3.604, 1.047, 3.563, 0.041, 1.168, 0.569, 0.606, 1.894, 3.39, 2.948, 2.19, 0.251, 1.798, 1.019, 3.355, 0.696, 0.461, 2.328, 3.673, 3.052, 1.805, 2.307, 0.406, 1.703, 1.805, 2.38, 0.384, 1.016, 1.238, 1.915, 2.991, 0.78, 1.164, 1.182, 1.086, 0.851, 0.951, 1.995, 1.833, 0.868, 1.273, 3.68, 2.946, 3.149, 2.909, 2.433, 0.302, 2.771] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -21485,12 +21491,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -21537,6 +21537,12 @@ [0.151, 3.325, 1.632, 2.722, 2.024, 1.457, 0.908, 1.296, 0.641, 1.859, 2.236, 2.788, 0.184, 3.59, 0.655, 1.475, 3.956, 1.409, 3.086, 0.615, 3.932, 2.504, 3.744, 2.465, 0.494, 2.805, 1.779, 2.124, 3.361, 1.257, 2.794, 3.371, 2.078, 1.612, 0.864, 1.912, 0.282, 0.268, 2.756, 3.707, 0.274, 3.789, 0.21, 3.092, 3.759, 3.044, 0.683, 1.683, 3.024, 1.47, 3.192] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 564.0, + "unit": "nm" + } } } ], @@ -21546,12 +21552,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 564.0, - "unit": "nm" - } } }, { @@ -21598,6 +21598,12 @@ [1.499, 3.346, 3.686, 2.839, 1.646, 3.581, 3.166, 2.228, 3.218, 3.677, 2.783, 1.935, 3.383, 3.065, 2.865, 0.71, 2.571, 2.725, 2.742, 1.193, 3.688, 2.653, 3.379, 0.341, 0.142, 2.294, 0.652, 2.706, 1.449, 2.121, 0.096, 3.1, 1.89, 2.065, 1.295, 0.024, 2.391, 2.773, 3.218, 2.331, 1.115, 2.039, 3.537, 0.029, 1.49, 1.854, 0.826, 0.027, 0.894, 2.334, 2.112] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 522.0, + "unit": "nm" + } } } ], @@ -21607,12 +21613,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 522.0, - "unit": "nm" - } } }, { @@ -21659,6 +21659,12 @@ [2.957, 0.282, 0.277, 3.503, 2.845, 3.967, 3.345, 2.696, 3.352, 2.929, 0.46, 0.778, 1.097, 3.581, 3.683, 0.044, 1.318, 1.769, 2.84, 2.319, 3.798, 3.507, 0.41, 0.078, 1.648, 3.115, 3.349, 2.85, 2.288, 1.467, 0.624, 1.812, 3.115, 0.008, 1.138, 2.817, 1.613, 2.561, 2.449, 0.056, 3.045, 0.077, 3.865, 3.402, 0.654, 1.261, 2.44, 0.448, 1.807, 1.81, 3.507] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 524.0, + "unit": "nm" + } } } ], @@ -21668,12 +21674,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 524.0, - "unit": "nm" - } } }, { @@ -21720,6 +21720,12 @@ [2.257, 2.053, 0.015, 2.314, 3.45, 3.872, 0.199, 1.854, 3.729, 0.618, 0.495, 0.407, 1.884, 2.304, 2.647, 1.662, 1.088, 2.442, 0.866, 2.43, 2.756, 3.32, 2.783, 3.273, 3.721, 3.641, 1.008, 3.423, 0.386, 0.675, 2.9, 1.043, 0.478, 1.959, 2.367, 3.758, 3.1, 1.694, 1.688, 2.945, 1.413, 0.706, 2.719, 3.438, 2.55, 3.669, 1.981, 1.098, 2.007, 3.598, 1.352] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } } } ], @@ -21729,12 +21735,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 544.0, - "unit": "nm" - } } }, { @@ -21781,6 +21781,12 @@ [2.006, 0.941, 3.379, 0.75, 2.936, 3.27, 0.741, 2.593, 3.809, 2.863, 0.776, 1.467, 3.054, 1.717, 3.452, 3.929, 3.924, 3.936, 2.889, 2.562, 3.393, 0.754, 1.92, 1.017, 2.05, 0.601, 3.345, 0.723, 0.051, 1.659, 3.909, 1.416, 0.788, 3.323, 0.894, 0.101, 1.098, 1.208, 3.431, 0.488, 2.358, 3.101, 1.878, 0.081, 0.637, 3.238, 3.664, 1.72, 3.098, 3.739, 2.056] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } } } ], @@ -21790,12 +21796,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 536.0, - "unit": "nm" - } } }, { @@ -21842,6 +21842,12 @@ [1.161, 3.117, 1.036, 1.958, 1.251, 3.02, 2.362, 2.7, 2.335, 3.925, 0.017, 2.541, 2.149, 2.954, 3.36, 0.679, 3.731, 0.822, 3.35, 2.83, 2.715, 0.505, 2.401, 0.203, 0.292, 2.875, 1.839, 0.379, 2.811, 0.936, 1.624, 1.625, 0.312, 3.603, 2.748, 2.298, 3.751, 1.364, 3.642, 1.081, 2.736, 2.508, 1.096, 0.563, 2.341, 0.559, 3.729, 1.127, 1.277, 2.558, 3.933] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } } } ], @@ -21851,12 +21857,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 570.0, - "unit": "nm" - } } }, { @@ -21903,6 +21903,12 @@ [0.897, 3.747, 0.908, 3.34, 0.656, 0.716, 0.832, 1.665, 2.376, 1.181, 1.982, 3.888, 1.398, 2.3, 2.392, 2.228, 2.546, 0.206, 1.062, 0.928, 2.366, 1.179, 2.269, 0.093, 0.207, 3.409, 1.837, 1.862, 3.733, 3.146, 0.712, 3.102, 0.252, 1.003, 0.727, 1.878, 3.404, 0.262, 2.091, 1.581, 2.919, 3.698, 1.266, 3.9, 0.754, 2.619, 3.697, 2.262, 3.948, 2.33, 1.182] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } } } ], @@ -21912,12 +21918,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 548.0, - "unit": "nm" - } } }, { @@ -21964,6 +21964,12 @@ [0.92, 0.215, 1.63, 1.566, 3.718, 1.478, 0.814, 3.133, 1.247, 2.878, 2.97, 1.932, 3.23, 0.468, 2.88, 3.636, 0.394, 1.573, 0.514, 2.824, 2.284, 2.114, 3.48, 2.009, 2.667, 3.913, 2.369, 3.339, 1.588, 3.711, 3.575, 1.913, 1.402, 1.963, 3.791, 2.886, 2.622, 3.436, 1.008, 0.399, 2.589, 1.128, 0.844, 2.702, 3.948, 1.766, 2.035, 3.431, 1.873, 2.983, 3.303] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } } } ], @@ -21973,12 +21979,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 550.0, - "unit": "nm" - } } } ], @@ -21988,7 +21988,7 @@ "UNC path": "tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.txt", "file name": "partial_plate_with_empty_values.txt", "ASM converter name": "allotropy_molecular_devices_softmax_pro", - "ASM converter version": "0.1.93", + "ASM converter version": "0.1.97", "software name": "SoftMax Pro" }, "device system document": { diff --git a/tests/parsers/moldev_softmax_pro/testdata/spectrum_data.json b/tests/parsers/moldev_softmax_pro/testdata/spectrum_data.json index 249f8d979..90cd698c8 100644 --- a/tests/parsers/moldev_softmax_pro/testdata/spectrum_data.json +++ b/tests/parsers/moldev_softmax_pro/testdata/spectrum_data.json @@ -73,6 +73,12 @@ [0.1685, 0.1688, 0.1691, 0.1696] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -82,12 +88,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -161,6 +161,12 @@ [0.1982, 0.1987, 0.1992, 0.1994] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -170,12 +176,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -249,6 +249,12 @@ [0.2815, 0.2824, 0.2833, 0.2841] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -258,12 +264,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -337,6 +337,12 @@ [0.2817, 0.2826, 0.2832, 0.2843] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -346,12 +352,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -425,6 +425,12 @@ [0.2751, 0.276, 0.2767, 0.2775] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -434,12 +440,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -513,6 +513,12 @@ [0.2887, 0.2898, 0.2904, 0.2913] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -522,12 +528,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -601,6 +601,12 @@ [0.1929, 0.1936, 0.1939, 0.1943] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -610,12 +616,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -689,6 +689,12 @@ [0.1894, 0.1901, 0.1904, 0.191] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -698,12 +704,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -777,6 +777,12 @@ [0.2839, 0.2848, 0.2856, 0.2865] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -786,12 +792,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -865,6 +865,12 @@ [0.3174, 0.3186, 0.3193, 0.3199] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -874,12 +880,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -953,6 +953,12 @@ [0.205, 0.2056, 0.2059, 0.2064] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -962,12 +968,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -1041,6 +1041,12 @@ [0.1986, 0.1991, 0.1996, 0.2] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -1050,12 +1056,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -1129,6 +1129,12 @@ [0.2836, 0.2844, 0.2853, 0.2861] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -1138,12 +1144,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -1217,6 +1217,12 @@ [0.2749, 0.2758, 0.2766, 0.2774] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -1226,12 +1232,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -1305,6 +1305,12 @@ [0.267, 0.2679, 0.2687, 0.2696] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -1314,12 +1320,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -1393,6 +1393,12 @@ [0.3353, 0.3381, 0.337, 0.3399] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -1402,12 +1408,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -1481,6 +1481,12 @@ [0.2951, 0.2962, 0.2975, 0.2975] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -1490,12 +1496,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -1569,6 +1569,12 @@ [0.3124, 0.314, 0.3144, 0.316] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -1578,12 +1584,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -1657,6 +1657,12 @@ [0.2841, 0.2858, 0.2846, 0.2875] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -1666,12 +1672,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -1745,6 +1745,12 @@ [0.2841, 0.2861, 0.2848, 0.2873] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -1754,12 +1760,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -1833,6 +1833,12 @@ [0.3107, 0.3118, 0.3129, 0.3133] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -1842,12 +1848,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -1921,6 +1921,12 @@ [0.2723, 0.2733, 0.2742, 0.2751] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -1930,12 +1936,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -2009,6 +2009,12 @@ [0.3258, 0.327, 0.3287, 0.3284] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -2018,12 +2024,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -2097,6 +2097,12 @@ [0.2226, 0.2233, 0.2239, 0.2244] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -2106,12 +2112,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -2185,6 +2185,12 @@ [0.1932, 0.1938, 0.1943, 0.1944] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -2194,12 +2200,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -2250,6 +2250,12 @@ [0.0353, 0.0352, 0.0353, 0.0352] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } } } ], @@ -2259,12 +2265,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } } }, { @@ -2338,6 +2338,12 @@ [0.2496, 0.2505, 0.2507, 0.2517] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -2347,12 +2353,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -2403,6 +2403,12 @@ [0.0352, 0.0352, 0.0352, 0.0351] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } } } ], @@ -2412,12 +2418,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } } }, { @@ -2491,6 +2491,12 @@ [0.2924, 0.2934, 0.2941, 0.295] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -2500,12 +2506,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -2556,6 +2556,12 @@ [0.0357, 0.0357, 0.0357, 0.0355] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -2565,12 +2571,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -2644,6 +2644,12 @@ [0.2069, 0.2076, 0.208, 0.2084] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -2653,12 +2659,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -2709,6 +2709,12 @@ [0.0456, 0.0455, 0.0454, 0.0454] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 552.0, + "unit": "nm" + } } } ], @@ -2718,12 +2724,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 552.0, - "unit": "nm" - } } }, { @@ -2797,6 +2797,12 @@ [0.3214, 0.3227, 0.3233, 0.3243] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -2806,12 +2812,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -2862,6 +2862,12 @@ [0.0359, 0.0359, 0.0359, 0.0359] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } } } ], @@ -2871,12 +2877,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } } }, { @@ -2950,6 +2950,12 @@ [0.2135, 0.214, 0.2145, 0.2148] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -2959,12 +2965,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -3015,6 +3015,12 @@ [0.0391, 0.0391, 0.0391, 0.039] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -3024,12 +3030,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -3103,6 +3103,12 @@ [0.296, 0.2968, 0.2978, 0.2985] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -3112,12 +3118,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -3168,6 +3168,12 @@ [0.0358, 0.0359, 0.0358, 0.0357] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 552.0, + "unit": "nm" + } } } ], @@ -3177,12 +3183,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 552.0, - "unit": "nm" - } } }, { @@ -3256,6 +3256,12 @@ [0.3012, 0.3023, 0.3032, 0.3039] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -3265,12 +3271,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -3321,6 +3321,12 @@ [0.0471, 0.0471, 0.0471, 0.0469] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } } } ], @@ -3330,12 +3336,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } } }, { @@ -3409,6 +3409,12 @@ [0.3028, 0.3035, 0.3048, 0.3053] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -3418,12 +3424,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -3474,6 +3474,12 @@ [0.0359, 0.0359, 0.0359, 0.0358] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 552.0, + "unit": "nm" + } } } ], @@ -3483,12 +3489,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 552.0, - "unit": "nm" - } } }, { @@ -3562,6 +3562,12 @@ [0.3017, 0.3025, 0.3035, 0.3041] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -3571,12 +3577,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -3627,6 +3627,12 @@ [0.0382, 0.0382, 0.0382, 0.0381] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 552.0, + "unit": "nm" + } } } ], @@ -3636,12 +3642,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 552.0, - "unit": "nm" - } } }, { @@ -3715,6 +3715,12 @@ [0.3348, 0.336, 0.3374, 0.3374] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -3724,12 +3730,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -3780,6 +3780,12 @@ [0.0372, 0.0372, 0.0372, 0.0371] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -3789,12 +3795,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -3868,6 +3868,12 @@ [0.3021, 0.3031, 0.3041, 0.3044] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -3877,12 +3883,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -3933,6 +3933,12 @@ [0.0375, 0.0375, 0.0375, 0.0374] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 552.0, + "unit": "nm" + } } } ], @@ -3942,12 +3948,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 552.0, - "unit": "nm" - } } }, { @@ -4021,6 +4021,12 @@ [0.28, 0.2811, 0.2818, 0.2828] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -4030,12 +4036,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -4109,6 +4109,12 @@ [0.2804, 0.2813, 0.282, 0.2829] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -4118,12 +4124,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -4197,6 +4197,12 @@ [0.2945, 0.2954, 0.2961, 0.2972] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -4206,12 +4212,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -4285,6 +4285,12 @@ [0.2999, 0.3008, 0.3016, 0.3026] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -4294,12 +4300,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -4373,6 +4373,12 @@ [0.2282, 0.2289, 0.2293, 0.2298] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -4382,12 +4388,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -4461,6 +4461,12 @@ [0.2096, 0.2102, 0.2104, 0.2111] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -4470,12 +4476,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -4549,6 +4549,12 @@ [0.2738, 0.2747, 0.2753, 0.2764] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -4558,12 +4564,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -4637,6 +4637,12 @@ [0.2869, 0.2877, 0.2884, 0.2894] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -4646,12 +4652,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -4725,6 +4725,12 @@ [0.2952, 0.2963, 0.297, 0.2981] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -4734,12 +4740,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -4813,6 +4813,12 @@ [0.2943, 0.2952, 0.296, 0.2969] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -4822,12 +4828,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -4901,6 +4901,12 @@ [0.2825, 0.2835, 0.2843, 0.2852] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -4910,12 +4916,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -4989,6 +4989,12 @@ [0.2961, 0.2971, 0.298, 0.2987] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -4998,12 +5004,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -5077,6 +5077,12 @@ [0.294, 0.2949, 0.2957, 0.2967] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -5086,12 +5092,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -5165,6 +5165,12 @@ [0.2837, 0.2847, 0.2855, 0.2865] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -5174,12 +5180,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -5253,6 +5253,12 @@ [0.2778, 0.2789, 0.2795, 0.2803] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -5262,12 +5268,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -5341,6 +5341,12 @@ [0.2895, 0.2902, 0.2911, 0.2917] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -5350,12 +5356,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -5429,6 +5429,12 @@ [0.2599, 0.2607, 0.2615, 0.262] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -5438,12 +5444,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -5517,6 +5517,12 @@ [0.2669, 0.2677, 0.2685, 0.2689] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -5526,12 +5532,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -5605,6 +5605,12 @@ [0.2854, 0.2864, 0.2871, 0.2877] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -5614,12 +5620,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -5693,6 +5693,12 @@ [0.2846, 0.2855, 0.2864, 0.2871] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -5702,12 +5708,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -5781,6 +5781,12 @@ [0.2847, 0.2856, 0.287, 0.2873] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -5790,12 +5796,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -5869,6 +5869,12 @@ [0.2721, 0.2727, 0.2737, 0.2742] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -5878,12 +5884,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -5957,6 +5957,12 @@ [0.3033, 0.3041, 0.3053, 0.3058] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -5966,12 +5972,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -6045,6 +6045,12 @@ [0.2887, 0.2894, 0.2902, 0.2909] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -6054,12 +6060,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -6133,6 +6133,12 @@ [0.3023, 0.3032, 0.304, 0.3048] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -6142,12 +6148,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -6198,6 +6198,12 @@ [0.036, 0.036, 0.036, 0.0358] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -6207,12 +6213,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -6286,6 +6286,12 @@ [0.3108, 0.3122, 0.3128, 0.3138] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -6295,12 +6301,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -6351,6 +6351,12 @@ [0.0361, 0.036, 0.0361, 0.0358] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -6360,12 +6366,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -6439,6 +6439,12 @@ [0.2418, 0.2426, 0.2432, 0.2436] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -6448,12 +6454,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -6504,6 +6504,12 @@ [0.0376, 0.0376, 0.0376, 0.0375] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -6513,12 +6519,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -6592,6 +6592,12 @@ [0.2912, 0.2923, 0.293, 0.2939] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -6601,12 +6607,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -6657,6 +6657,12 @@ [0.0409, 0.0409, 0.0408, 0.0406] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -6666,12 +6672,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -6745,6 +6745,12 @@ [0.3156, 0.3166, 0.3176, 0.3183] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -6754,12 +6760,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -6810,6 +6810,12 @@ [0.0425, 0.0425, 0.0424, 0.0424] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 552.0, + "unit": "nm" + } } } ], @@ -6819,12 +6825,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 552.0, - "unit": "nm" - } } }, { @@ -6898,6 +6898,12 @@ [0.2987, 0.2997, 0.3005, 0.3013] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -6907,12 +6913,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -6963,6 +6963,12 @@ [0.1936, 0.205, 0.1914, 0.2034] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } } } ], @@ -6972,12 +6978,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 550.0, - "unit": "nm" - } } }, { @@ -7051,6 +7051,12 @@ [0.278, 0.2789, 0.2797, 0.2807] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -7060,12 +7066,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -7116,6 +7116,12 @@ [0.0356, 0.0356, 0.0356, 0.0354] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } } } ], @@ -7125,12 +7131,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } } }, { @@ -7204,6 +7204,12 @@ [0.2723, 0.2732, 0.2739, 0.2748] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -7213,12 +7219,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -7269,6 +7269,12 @@ [0.049, 0.049, 0.049, 0.0488] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -7278,12 +7284,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -7357,6 +7357,12 @@ [0.263, 0.264, 0.265, 0.2654] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -7366,12 +7372,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -7422,6 +7422,12 @@ [0.0372, 0.0371, 0.0372, 0.037] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -7431,12 +7437,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -7510,6 +7510,12 @@ [0.2755, 0.2764, 0.2773, 0.278] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -7519,12 +7525,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -7575,6 +7575,12 @@ [0.0394, 0.0395, 0.0394, 0.0393] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 552.0, + "unit": "nm" + } } } ], @@ -7584,12 +7590,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 552.0, - "unit": "nm" - } } }, { @@ -7663,6 +7663,12 @@ [0.2763, 0.2774, 0.2785, 0.2788] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -7672,12 +7678,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -7728,6 +7728,12 @@ [0.0369, 0.0369, 0.0369, 0.0368] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -7737,12 +7743,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -7816,6 +7816,12 @@ [0.2968, 0.2975, 0.2989, 0.2991] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -7825,12 +7831,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -7881,6 +7881,12 @@ [0.0382, 0.0382, 0.0381, 0.0381] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -7890,12 +7896,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -7969,6 +7969,12 @@ [0.1866, 0.1872, 0.1874, 0.1878] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -7978,12 +7984,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -8057,6 +8057,12 @@ [0.1814, 0.1822, 0.1824, 0.1827] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -8066,12 +8072,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -8145,6 +8145,12 @@ [0.2437, 0.2446, 0.2451, 0.246] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -8154,12 +8160,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -8233,6 +8233,12 @@ [0.3062, 0.3072, 0.3082, 0.3092] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -8242,12 +8248,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -8321,6 +8321,12 @@ [0.2629, 0.2637, 0.2646, 0.2654] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -8330,12 +8336,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -8409,6 +8409,12 @@ [0.3186, 0.3195, 0.321, 0.3213] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -8418,12 +8424,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -8497,6 +8497,12 @@ [0.4002, 0.4012, 0.3996, 0.4038] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -8506,12 +8512,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -8585,6 +8585,12 @@ [0.3551, 0.3571, 0.3569, 0.3587] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -8594,12 +8600,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -8673,6 +8673,12 @@ [0.2935, 0.2944, 0.2952, 0.2961] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -8682,12 +8688,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -8761,6 +8761,12 @@ [0.3459, 0.347, 0.3486, 0.3483] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -8770,12 +8776,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -8849,6 +8849,12 @@ [0.2392, 0.2402, 0.2405, 0.241] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -8858,12 +8864,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -8937,6 +8937,12 @@ [0.3682, 0.3697, 0.3703, 0.3718] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -8946,12 +8952,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -9025,6 +9025,12 @@ [0.1782, 0.1788, 0.1791, 0.1795] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -9034,12 +9040,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -9113,6 +9113,12 @@ [0.1839, 0.1844, 0.1848, 0.185] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -9122,12 +9128,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -9201,6 +9201,12 @@ [0.3822, 0.3849, 0.3848, 0.3873] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -9210,12 +9216,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -9289,6 +9289,12 @@ [0.3301, 0.331, 0.3324, 0.3327] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -9298,12 +9304,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -9377,6 +9377,12 @@ [0.2939, 0.2951, 0.2959, 0.2971] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -9386,12 +9392,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -9465,6 +9465,12 @@ [0.624, 0.631, 0.628, 0.6292] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -9474,12 +9480,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -9553,6 +9553,12 @@ [0.2279, 0.2287, 0.2294, 0.2298] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -9562,12 +9568,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -9641,6 +9641,12 @@ [0.3389, 0.34, 0.3414, 0.3417] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -9650,12 +9656,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -9729,6 +9729,12 @@ [0.352, 0.3538, 0.3549, 0.3552] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -9738,12 +9744,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -9817,6 +9817,12 @@ [0.4047, 0.4051, 0.4073, 0.4076] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -9826,12 +9832,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -9905,6 +9905,12 @@ [0.3479, 0.3484, 0.3498, 0.3504] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -9914,12 +9920,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -9993,6 +9993,12 @@ [0.3203, 0.3211, 0.3227, 0.3226] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -10002,12 +10008,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -10081,6 +10081,12 @@ [0.1955, 0.1962, 0.1966, 0.1968] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -10090,12 +10096,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -10146,6 +10146,12 @@ [0.038, 0.038, 0.038, 0.0378] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -10155,12 +10161,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -10234,6 +10234,12 @@ [0.3177, 0.3186, 0.3195, 0.3206] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -10243,12 +10249,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -10299,6 +10299,12 @@ [0.0427, 0.0427, 0.0426, 0.0426] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } } } ], @@ -10308,12 +10314,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 542.0, - "unit": "nm" - } } }, { @@ -10387,6 +10387,12 @@ [0.2356, 0.2363, 0.2362, 0.2369] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -10396,12 +10402,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -10452,6 +10452,12 @@ [0.0364, 0.0364, 0.0364, 0.0363] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -10461,12 +10467,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -10540,6 +10540,12 @@ [0.3758, 0.3765, 0.3769, 0.3789] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -10549,12 +10555,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -10605,6 +10605,12 @@ [0.0474, 0.0472, 0.0472, 0.0471] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -10614,12 +10620,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -10693,6 +10693,12 @@ [0.2325, 0.2336, 0.2339, 0.2347] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -10702,12 +10708,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -10758,6 +10758,12 @@ [0.0361, 0.0361, 0.0361, 0.0358] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -10767,12 +10773,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -10846,6 +10846,12 @@ [0.3212, 0.3224, 0.3234, 0.324] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -10855,12 +10861,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -10911,6 +10911,12 @@ [0.0361, 0.036, 0.036, 0.0358] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -10920,12 +10926,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -10999,6 +10999,12 @@ [0.1866, 0.1872, 0.1873, 0.1877] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -11008,12 +11014,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -11064,6 +11064,12 @@ [0.0368, 0.0368, 0.0368, 0.0366] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -11073,12 +11079,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -11152,6 +11152,12 @@ [0.234, 0.2346, 0.2355, 0.2357] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -11161,12 +11167,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -11217,6 +11217,12 @@ [0.047, 0.047, 0.0471, 0.0468] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -11226,12 +11232,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -11305,6 +11305,12 @@ [0.3971, 0.3992, 0.4002, 0.3995] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -11314,12 +11320,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -11370,6 +11370,12 @@ [0.0361, 0.0361, 0.0361, 0.036] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -11379,12 +11385,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -11458,6 +11458,12 @@ [0.385, 0.3852, 0.3873, 0.3869] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -11467,12 +11473,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -11523,6 +11523,12 @@ [0.0375, 0.0375, 0.0376, 0.0373] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -11532,12 +11538,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -11611,6 +11611,12 @@ [0.3543, 0.3552, 0.3567, 0.3572] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -11620,12 +11626,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -11676,6 +11676,12 @@ [0.0377, 0.0377, 0.0376, 0.0375] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -11685,12 +11691,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -11764,6 +11764,12 @@ [0.3297, 0.3307, 0.3321, 0.3323] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -11773,12 +11779,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -11829,6 +11829,12 @@ [0.0369, 0.037, 0.037, 0.0368] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -11838,12 +11844,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -11917,6 +11917,12 @@ [0.3907, 0.3927, 0.3911, 0.395] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -11926,12 +11932,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -12005,6 +12005,12 @@ [0.4095, 0.4123, 0.4105, 0.414] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -12014,12 +12020,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -12093,6 +12093,12 @@ [0.369, 0.3727, 0.3712, 0.3744] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -12102,12 +12108,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -12181,6 +12181,12 @@ [0.4094, 0.4122, 0.4117, 0.413] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -12190,12 +12196,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -12269,6 +12269,12 @@ [0.4031, 0.4058, 0.4036, 0.4059] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -12278,12 +12284,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -12357,6 +12357,12 @@ [0.3239, 0.3266, 0.3248, 0.3272] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -12366,12 +12372,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -12445,6 +12445,12 @@ [0.3211, 0.3243, 0.3229, 0.324] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -12454,12 +12460,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -12533,6 +12533,12 @@ [0.2492, 0.2515, 0.251, 0.2531] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -12542,12 +12548,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -12621,6 +12621,12 @@ [0.378, 0.3794, 0.3805, 0.381] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -12630,12 +12636,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -12709,6 +12709,12 @@ [0.2735, 0.2743, 0.2754, 0.2755] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -12718,12 +12724,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -12797,6 +12797,12 @@ [0.4025, 0.4041, 0.405, 0.407] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -12806,12 +12812,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -12885,6 +12885,12 @@ [0.3904, 0.3922, 0.3924, 0.3935] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -12894,12 +12900,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -12973,6 +12973,12 @@ [0.3531, 0.3554, 0.3551, 0.356] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -12982,12 +12988,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -13061,6 +13061,12 @@ [0.3337, 0.3347, 0.3357, 0.3366] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -13070,12 +13076,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -13149,6 +13149,12 @@ [0.2684, 0.2694, 0.2703, 0.2704] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -13158,12 +13164,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -13237,6 +13237,12 @@ [0.372, 0.3762, 0.3743, 0.3765] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -13246,12 +13252,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -13325,6 +13325,12 @@ [0.4538, 0.4548, 0.4561, 0.4569] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -13334,12 +13340,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -13413,6 +13413,12 @@ [0.2718, 0.2728, 0.2737, 0.2747] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -13422,12 +13428,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -13501,6 +13501,12 @@ [0.2827, 0.2836, 0.2844, 0.2851] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -13510,12 +13516,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -13589,6 +13589,12 @@ [0.3484, 0.3497, 0.3505, 0.3506] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -13598,12 +13604,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -13677,6 +13677,12 @@ [0.4494, 0.4508, 0.452, 0.4518] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -13686,12 +13692,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -13765,6 +13765,12 @@ [0.4357, 0.4368, 0.4382, 0.4381] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -13774,12 +13780,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -13853,6 +13853,12 @@ [0.4254, 0.428, 0.4289, 0.429] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -13862,12 +13868,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -13941,6 +13941,12 @@ [0.2932, 0.2942, 0.295, 0.2961] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -13950,12 +13956,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -14029,6 +14029,12 @@ [0.3497, 0.3515, 0.351, 0.354] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -14038,12 +14044,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -14094,6 +14094,12 @@ [0.0355, 0.0354, 0.0354, 0.0352] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -14103,12 +14109,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -14182,6 +14182,12 @@ [0.3119, 0.3133, 0.3136, 0.3154] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -14191,12 +14197,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -14247,6 +14247,12 @@ [0.0439, 0.0439, 0.0439, 0.0436] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -14256,12 +14262,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -14335,6 +14335,12 @@ [0.3399, 0.3415, 0.3406, 0.3426] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -14344,12 +14350,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -14400,6 +14400,12 @@ [0.0378, 0.0378, 0.0378, 0.0376] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -14409,12 +14415,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -14488,6 +14488,12 @@ [0.2673, 0.2698, 0.2686, 0.2703] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -14497,12 +14503,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -14553,6 +14553,12 @@ [0.0489, 0.0489, 0.0488, 0.0486] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -14562,12 +14568,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -14641,6 +14641,12 @@ [0.3041, 0.3051, 0.3061, 0.307] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -14650,12 +14656,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -14706,6 +14706,12 @@ [0.0365, 0.0365, 0.0365, 0.0363] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -14715,12 +14721,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -14794,6 +14794,12 @@ [0.258, 0.2588, 0.2594, 0.26] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -14803,12 +14809,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -14859,6 +14859,12 @@ [0.0426, 0.0426, 0.0426, 0.0425] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -14868,12 +14874,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -14947,6 +14947,12 @@ [0.299, 0.3, 0.3009, 0.3016] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -14956,12 +14962,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -15012,6 +15012,12 @@ [0.0407, 0.0408, 0.0408, 0.0406] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -15021,12 +15027,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -15100,6 +15100,12 @@ [0.2906, 0.2915, 0.2925, 0.2932] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -15109,12 +15115,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -15165,6 +15165,12 @@ [0.0402, 0.0402, 0.0402, 0.04] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -15174,12 +15180,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -15253,6 +15253,12 @@ [0.358, 0.3628, 0.3597, 0.3673] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } } } ], @@ -15262,12 +15268,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } } }, { @@ -15318,6 +15318,12 @@ [0.0558, 0.0559, 0.0556, 0.0558] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -15327,12 +15333,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -15406,6 +15406,12 @@ [0.2781, 0.2789, 0.2801, 0.2805] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -15415,12 +15421,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -15471,6 +15471,12 @@ [0.0368, 0.0368, 0.0368, 0.0366] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -15480,12 +15486,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -15559,6 +15559,12 @@ [0.2531, 0.254, 0.2548, 0.2554] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -15568,12 +15574,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -15624,6 +15624,12 @@ [0.0379, 0.0379, 0.038, 0.0377] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -15633,12 +15639,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -15712,6 +15712,12 @@ [0.3026, 0.3036, 0.3047, 0.3057] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -15721,12 +15727,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -15777,6 +15777,12 @@ [0.0527, 0.0528, 0.0527, 0.0524] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } } } ], @@ -15786,12 +15792,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 526.0, - "unit": "nm" - } } }, { @@ -15865,6 +15865,12 @@ [0.3537, 0.3563, 0.3548, 0.3578] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -15874,12 +15880,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -15953,6 +15953,12 @@ [0.3439, 0.3464, 0.3447, 0.3472] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -15962,12 +15968,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -16041,6 +16041,12 @@ [0.3409, 0.3433, 0.3408, 0.3433] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -16050,12 +16056,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -16129,6 +16129,12 @@ [0.2288, 0.2295, 0.2299, 0.2304] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -16138,12 +16144,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -16217,6 +16217,12 @@ [0.2809, 0.2814, 0.2809, 0.2826] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -16226,12 +16232,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -16305,6 +16305,12 @@ [0.3046, 0.3066, 0.3061, 0.3076] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -16314,12 +16320,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -16393,6 +16393,12 @@ [0.3145, 0.3155, 0.3163, 0.3175] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -16402,12 +16408,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -16481,6 +16481,12 @@ [0.3705, 0.3722, 0.3702, 0.3731] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -16490,12 +16496,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -16569,6 +16569,12 @@ [0.3728, 0.3749, 0.3745, 0.3763] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -16578,12 +16584,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -16657,6 +16657,12 @@ [0.4061, 0.4088, 0.4078, 0.4104] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -16666,12 +16672,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -16745,6 +16745,12 @@ [0.6762, 0.683, 0.676, 0.6801] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } } } ], @@ -16754,12 +16760,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } } }, { @@ -16833,6 +16833,12 @@ [0.351, 0.3524, 0.3544, 0.3544] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -16842,12 +16848,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -16921,6 +16921,12 @@ [0.3636, 0.3648, 0.3657, 0.3658] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -16930,12 +16936,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -17009,6 +17009,12 @@ [0.3159, 0.3186, 0.3173, 0.3204] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -17018,12 +17024,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -17097,6 +17097,12 @@ [0.3244, 0.3266, 0.3235, 0.3277] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -17106,12 +17112,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -17185,6 +17185,12 @@ [0.5386, 0.5468, 0.5352, 0.5505] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } } } ], @@ -17194,12 +17200,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } } }, { @@ -17273,6 +17273,12 @@ [0.3947, 0.3967, 0.3974, 0.3983] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -17282,12 +17288,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -17361,6 +17361,12 @@ [0.3947, 0.3972, 0.3968, 0.3981] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -17370,12 +17376,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -17449,6 +17449,12 @@ [0.2409, 0.2415, 0.2425, 0.2426] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -17458,12 +17464,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -17537,6 +17537,12 @@ [0.3801, 0.3824, 0.3829, 0.3832] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -17546,12 +17552,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -17625,6 +17625,12 @@ [0.3095, 0.3104, 0.3121, 0.312] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -17634,12 +17640,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -17713,6 +17713,12 @@ [0.4799, 0.4816, 0.4815, 0.483] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -17722,12 +17728,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -17801,6 +17801,12 @@ [0.3715, 0.3728, 0.3749, 0.3749] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -17810,12 +17816,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -17889,6 +17889,12 @@ [0.338, 0.339, 0.34, 0.3405] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -17898,12 +17904,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -17977,6 +17977,12 @@ [0.356, 0.3579, 0.3568, 0.3594] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -17986,12 +17992,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -18042,6 +18042,12 @@ [0.0357, 0.0358, 0.0358, 0.0354] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -18051,12 +18057,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -18130,6 +18130,12 @@ [0.3632, 0.3646, 0.3616, 0.3696] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -18139,12 +18145,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -18195,6 +18195,12 @@ [0.0381, 0.0381, 0.0381, 0.0377] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -18204,12 +18210,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -18283,6 +18283,12 @@ [0.764, 0.771, 0.7514, 0.7605] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } } } ], @@ -18292,12 +18298,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } } }, { @@ -18348,6 +18348,12 @@ [0.0358, 0.0359, 0.0359, 0.0357] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -18357,12 +18363,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -18436,6 +18436,12 @@ [0.3279, 0.3294, 0.3282, 0.3309] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -18445,12 +18451,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -18501,6 +18501,12 @@ [0.0497, 0.0497, 0.0496, 0.0494] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } } } ], @@ -18510,12 +18516,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 542.0, - "unit": "nm" - } } }, { @@ -18589,6 +18589,12 @@ [0.2944, 0.2954, 0.2964, 0.2974] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -18598,12 +18604,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -18654,6 +18654,12 @@ [0.0366, 0.0366, 0.0366, 0.0363] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -18663,12 +18669,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -18742,6 +18742,12 @@ [0.7712, 0.7759, 0.769, 0.7738] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -18751,12 +18757,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -18807,6 +18807,12 @@ [0.0376, 0.0377, 0.0377, 0.0374] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -18816,12 +18822,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -18895,6 +18895,12 @@ [0.3697, 0.3717, 0.3717, 0.374] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -18904,12 +18910,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -18960,6 +18960,12 @@ [0.0371, 0.0371, 0.0371, 0.0368] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -18969,12 +18975,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -19048,6 +19048,12 @@ [0.3216, 0.3227, 0.3234, 0.3243] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -19057,12 +19063,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -19113,6 +19113,12 @@ [0.0389, 0.0388, 0.0389, 0.0386] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -19122,12 +19128,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -19201,6 +19201,12 @@ [0.3529, 0.3539, 0.3544, 0.3558] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -19210,12 +19216,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -19266,6 +19266,12 @@ [0.0372, 0.0372, 0.0372, 0.037] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -19275,12 +19281,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -19354,6 +19354,12 @@ [0.3282, 0.3293, 0.3298, 0.3308] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -19363,12 +19369,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -19419,6 +19419,12 @@ [0.6085, 0.6059, 0.5901, 0.6179] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } } } ], @@ -19428,12 +19434,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } } }, { @@ -19507,6 +19507,12 @@ [0.3646, 0.3653, 0.3673, 0.3671] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -19516,12 +19522,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -19572,6 +19572,12 @@ [0.0379, 0.0379, 0.0379, 0.0377] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -19581,12 +19587,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -19660,6 +19660,12 @@ [0.3409, 0.3422, 0.3441, 0.3434] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -19669,12 +19675,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -19725,6 +19725,12 @@ [0.0414, 0.0415, 0.0414, 0.0412] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } } } ], @@ -19734,12 +19740,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 526.0, - "unit": "nm" - } } }, { @@ -19790,6 +19790,12 @@ [0.3558, 0.3577, 0.3541, 0.3576] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -19799,12 +19805,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -19855,6 +19855,12 @@ [0.3348, 0.3406, 0.3363, 0.3403] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -19864,12 +19870,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -19920,6 +19920,12 @@ [0.3141, 0.3152, 0.3144, 0.3167] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -19929,12 +19935,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -19985,6 +19985,12 @@ [0.2824, 0.2837, 0.2839, 0.2849] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -19994,12 +20000,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -20050,6 +20050,12 @@ [0.4786, 0.4837, 0.4749, 0.4844] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } } } ], @@ -20059,12 +20065,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 550.0, - "unit": "nm" - } } }, { @@ -20115,6 +20115,12 @@ [0.2431, 0.2443, 0.2454, 0.2464] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -20124,12 +20130,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -20180,6 +20180,12 @@ [0.2946, 0.296, 0.2956, 0.2975] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -20189,12 +20195,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -20245,6 +20245,12 @@ [0.3054, 0.3072, 0.3065, 0.309] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -20254,12 +20260,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -20310,6 +20310,12 @@ [0.1846, 0.1858, 0.185, 0.1856] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -20319,12 +20325,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -20375,6 +20375,12 @@ [0.167, 0.1672, 0.1675, 0.168] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -20384,12 +20390,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -20440,6 +20440,12 @@ [0.3396, 0.3406, 0.3421, 0.3425] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -20449,12 +20455,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -20505,6 +20505,12 @@ [0.4239, 0.4287, 0.4239, 0.4297] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } } } ], @@ -20514,12 +20520,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } } }, { @@ -20570,6 +20570,12 @@ [0.2936, 0.295, 0.2955, 0.2968] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -20579,12 +20585,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -20635,6 +20635,12 @@ [0.4006, 0.4047, 0.4013, 0.4055] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -20644,12 +20650,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -20700,6 +20700,12 @@ [0.2459, 0.2468, 0.2472, 0.248] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -20709,12 +20715,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -20765,6 +20765,12 @@ [0.2695, 0.2702, 0.2705, 0.2713] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -20774,12 +20780,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -20830,6 +20830,12 @@ [0.4304, 0.4338, 0.4314, 0.4353] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -20839,12 +20845,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -20895,6 +20895,12 @@ [2.0304, 2.0331, 2.033, 2.0476] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } } } ], @@ -20904,12 +20910,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 542.0, - "unit": "nm" - } } }, { @@ -20960,6 +20960,12 @@ [0.307, 0.3074, 0.3092, 0.3083] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -20969,12 +20975,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -21025,6 +21025,12 @@ [0.4338, 0.4358, 0.4351, 0.4388] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -21034,12 +21040,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -21090,6 +21090,12 @@ [0.2804, 0.2814, 0.2827, 0.2828] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -21099,12 +21105,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -21155,6 +21155,12 @@ [0.4709, 0.4718, 0.4742, 0.4747] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -21164,12 +21170,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -21220,6 +21220,12 @@ [0.4117, 0.4159, 0.4122, 0.4172] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -21229,12 +21235,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -21285,6 +21285,12 @@ [0.3237, 0.3256, 0.3258, 0.3273] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -21294,12 +21300,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -21350,6 +21350,12 @@ [0.3363, 0.3375, 0.3368, 0.3391] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -21359,12 +21365,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -21415,6 +21415,12 @@ [0.0366, 0.0366, 0.0366, 0.0363] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -21424,12 +21430,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -21480,6 +21480,12 @@ [0.2953, 0.2967, 0.2971, 0.2989] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -21489,12 +21495,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -21545,6 +21545,12 @@ [0.0358, 0.0358, 0.0358, 0.0356] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -21554,12 +21560,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -21610,6 +21610,12 @@ [0.2992, 0.3013, 0.3011, 0.3042] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -21619,12 +21625,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -21675,6 +21675,12 @@ [0.0359, 0.036, 0.036, 0.0357] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -21684,12 +21690,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -21740,6 +21740,12 @@ [0.2904, 0.2914, 0.292, 0.293] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -21749,12 +21755,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -21805,6 +21805,12 @@ [0.049, 0.0491, 0.0491, 0.0488] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -21814,12 +21820,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -21870,6 +21870,12 @@ [0.164, 0.1647, 0.1644, 0.1653] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -21879,12 +21885,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -21935,6 +21935,12 @@ [0.0371, 0.0371, 0.037, 0.0368] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -21944,12 +21950,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -22000,6 +22000,12 @@ [0.3029, 0.3041, 0.3052, 0.3062] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -22009,12 +22015,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -22065,6 +22065,12 @@ [0.0448, 0.0447, 0.0448, 0.0444] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -22074,12 +22080,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -22130,6 +22130,12 @@ [0.3031, 0.3041, 0.3038, 0.3058] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -22139,12 +22145,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -22195,6 +22195,12 @@ [0.0365, 0.0365, 0.0365, 0.0363] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } } } ], @@ -22204,12 +22210,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 542.0, - "unit": "nm" - } } }, { @@ -22260,6 +22260,12 @@ [0.2674, 0.268, 0.2689, 0.2696] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -22269,12 +22275,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -22325,6 +22325,12 @@ [0.0392, 0.0393, 0.0394, 0.039] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -22334,12 +22340,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -22390,6 +22390,12 @@ [0.2978, 0.2988, 0.2995, 0.3006] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -22399,12 +22405,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -22455,6 +22455,12 @@ [0.0484, 0.0484, 0.0482, 0.0482] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } } } ], @@ -22464,12 +22470,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 542.0, - "unit": "nm" - } } }, { @@ -22520,6 +22520,12 @@ [0.2998, 0.3008, 0.3018, 0.3025] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -22529,12 +22535,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -22585,6 +22585,12 @@ [0.0362, 0.0362, 0.0362, 0.036] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } } } ], @@ -22594,12 +22600,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 542.0, - "unit": "nm" - } } }, { @@ -22650,6 +22650,12 @@ [0.293, 0.2939, 0.2949, 0.2957] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -22659,12 +22665,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -22715,6 +22715,12 @@ [0.0412, 0.0412, 0.0412, 0.041] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } } } ], @@ -22724,12 +22730,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 542.0, - "unit": "nm" - } } }, { @@ -22780,6 +22780,12 @@ [0.3106, 0.3119, 0.3128, 0.3135] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -22789,12 +22795,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -22845,6 +22845,12 @@ [0.0391, 0.0391, 0.0391, 0.0388] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -22854,12 +22860,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -22910,6 +22910,12 @@ [0.3394, 0.3406, 0.3389, 0.3425] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -22919,12 +22925,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -22975,6 +22975,12 @@ [0.417, 0.4204, 0.4185, 0.4227] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -22984,12 +22990,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -23040,6 +23040,12 @@ [0.4454, 0.4492, 0.4466, 0.4502] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -23049,12 +23055,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -23105,6 +23105,12 @@ [0.2994, 0.3004, 0.3014, 0.302] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -23114,12 +23120,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -23170,6 +23170,12 @@ [0.3303, 0.3321, 0.3313, 0.3332] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -23179,12 +23185,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -23235,6 +23235,12 @@ [0.3371, 0.3405, 0.3403, 0.342] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -23244,12 +23250,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -23300,6 +23300,12 @@ [0.1825, 0.1832, 0.1827, 0.1836] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -23309,12 +23315,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -23365,6 +23365,12 @@ [0.1828, 0.1831, 0.183, 0.1834] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -23374,12 +23380,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -23430,6 +23430,12 @@ [0.3209, 0.3219, 0.3231, 0.3234] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -23439,12 +23445,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -23495,6 +23495,12 @@ [0.3526, 0.3537, 0.3534, 0.355] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -23504,12 +23510,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -23560,6 +23560,12 @@ [0.2517, 0.2528, 0.2532, 0.254] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -23569,12 +23575,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -23625,6 +23625,12 @@ [0.3952, 0.3966, 0.3958, 0.3979] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -23634,12 +23640,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -23690,6 +23690,12 @@ [0.3997, 0.4017, 0.402, 0.4047] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -23699,12 +23705,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -23755,6 +23755,12 @@ [0.3693, 0.3713, 0.3711, 0.374] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } } } ], @@ -23764,12 +23770,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 536.0, - "unit": "nm" - } } }, { @@ -23820,6 +23820,12 @@ [0.322, 0.3231, 0.3245, 0.3255] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -23829,12 +23835,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -23885,6 +23885,12 @@ [0.3282, 0.3294, 0.3311, 0.3316] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -23894,12 +23900,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -23950,6 +23950,12 @@ [0.3794, 0.3804, 0.3818, 0.3839] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } } } ], @@ -23959,12 +23965,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 536.0, - "unit": "nm" - } } }, { @@ -24015,6 +24015,12 @@ [0.3048, 0.306, 0.3077, 0.3079] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -24024,12 +24030,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -24080,6 +24080,12 @@ [0.3909, 0.3928, 0.393, 0.3946] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -24089,12 +24095,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -24145,6 +24145,12 @@ [0.4638, 0.4655, 0.4663, 0.4689] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -24154,12 +24160,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -24210,6 +24210,12 @@ [0.3628, 0.3634, 0.3657, 0.3655] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -24219,12 +24225,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -24275,6 +24275,12 @@ [0.3551, 0.358, 0.3574, 0.3586] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -24284,12 +24290,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -24340,6 +24340,12 @@ [0.4359, 0.4379, 0.4389, 0.4401] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 528.0, + "unit": "nm" + } } } ], @@ -24349,12 +24355,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 528.0, - "unit": "nm" - } } }, { @@ -24405,6 +24405,12 @@ [0.2542, 0.255, 0.256, 0.2564] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } } } ], @@ -24414,12 +24420,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 532.0, - "unit": "nm" - } } }, { @@ -24470,6 +24470,12 @@ [0.3395, 0.3416, 0.339, 0.3429] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -24479,12 +24485,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -24535,6 +24535,12 @@ [0.0362, 0.0362, 0.0362, 0.0359] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -24544,12 +24550,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -24600,6 +24600,12 @@ [0.3827, 0.3839, 0.3829, 0.3852] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -24609,12 +24615,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -24665,6 +24665,12 @@ [0.0356, 0.0356, 0.0356, 0.0354] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } } } ], @@ -24674,12 +24680,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 542.0, - "unit": "nm" - } } }, { @@ -24730,6 +24730,12 @@ [0.3146, 0.3152, 0.3157, 0.3178] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -24739,12 +24745,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -24795,6 +24795,12 @@ [0.0365, 0.0365, 0.0365, 0.0362] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -24804,12 +24810,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -24860,6 +24860,12 @@ [0.1494, 0.1497, 0.1498, 0.1506] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -24869,12 +24875,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -24925,6 +24925,12 @@ [0.0473, 0.0474, 0.0474, 0.0471] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -24934,12 +24940,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -24990,6 +24990,12 @@ [0.2325, 0.2333, 0.2325, 0.2333] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -24999,12 +25005,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -25055,6 +25055,12 @@ [0.0356, 0.0356, 0.0356, 0.0354] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -25064,12 +25070,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -25120,6 +25120,12 @@ [0.2865, 0.2875, 0.2885, 0.289] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -25129,12 +25135,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -25185,6 +25185,12 @@ [0.0372, 0.0373, 0.0373, 0.037] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -25194,12 +25200,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -25250,6 +25250,12 @@ [0.3189, 0.3202, 0.3213, 0.3236] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -25259,12 +25265,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -25315,6 +25315,12 @@ [0.0634, 0.0637, 0.0635, 0.0641] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } } } ], @@ -25324,12 +25330,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } } }, { @@ -25380,6 +25380,12 @@ [0.2952, 0.2964, 0.2976, 0.2986] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -25389,12 +25395,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -25445,6 +25445,12 @@ [0.039, 0.039, 0.0391, 0.0386] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -25454,12 +25460,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -25510,6 +25510,12 @@ [0.2935, 0.2947, 0.2953, 0.2963] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -25519,12 +25525,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -25575,6 +25575,12 @@ [0.0385, 0.0386, 0.0385, 0.0382] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -25584,12 +25590,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -25640,6 +25640,12 @@ [0.3093, 0.3107, 0.3126, 0.3132] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -25649,12 +25655,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -25705,6 +25705,12 @@ [0.0709, 0.0709, 0.0709, 0.0704] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } } } ], @@ -25714,12 +25720,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } } }, { @@ -25770,6 +25770,12 @@ [0.3371, 0.3384, 0.339, 0.3402] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -25779,12 +25785,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -25832,73 +25832,79 @@ [525.0, 526.0, 527.0, 528.0] ], "measures": [ - [0.0365, 0.0365, 0.0365, 0.0363] + [0.0365, 0.0365, 0.0365, 0.0363] + ] + } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + } + ], + "measurement time": "2024-11-11T11:33:26+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_347", + "sample document": { + "location identifier": "N23", + "sample identifier": "Plate1 N23", + "well plate identifier": "Plate1" + }, + "compartment temperature": { + "value": 23.5, + "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 526.0, 527.0, 528.0] + ], + "measures": [ + [0.3727, 0.3772, 0.3757, 0.3786] ] } - } - } - ], - "measurement time": "2024-11-11T11:33:26+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance" - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_347", - "sample document": { - "location identifier": "N23", - "sample identifier": "Plate1 N23", - "well plate identifier": "Plate1" }, - "compartment temperature": { - "value": 23.5, - "unit": "degC" - }, - "absorption spectrum data cube": { - "label": "absorbance-spectrum", - "cube-structure": { - "dimensions": [ - { - "@componentDatatype": "double", - "concept": "wavelength", - "unit": "nm" - } - ], - "measures": [ - { - "@componentDatatype": "double", - "concept": "absorbance", - "unit": "mAU" - } - ] - }, - "data": { - "dimensions": [ - [525.0, 526.0, 527.0, 528.0] - ], - "measures": [ - [0.3727, 0.3772, 0.3757, 0.3786] - ] + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" } } } @@ -25909,12 +25915,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -25965,6 +25965,12 @@ [0.038, 0.038, 0.038, 0.0377] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -25974,12 +25980,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -26030,6 +26030,12 @@ [0.2969, 0.2988, 0.2982, 0.3005] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -26039,12 +26045,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -26095,6 +26095,12 @@ [0.3844, 0.3862, 0.3819, 0.3869] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -26104,12 +26110,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -26160,6 +26160,12 @@ [0.3389, 0.3388, 0.3386, 0.3411] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -26169,12 +26175,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -26225,6 +26225,12 @@ [0.3184, 0.3205, 0.3214, 0.3233] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -26234,12 +26240,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -26290,6 +26290,12 @@ [0.3223, 0.3236, 0.3236, 0.3268] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -26299,12 +26305,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -26355,6 +26355,12 @@ [0.3049, 0.306, 0.3073, 0.3084] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } } } ], @@ -26364,12 +26370,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 536.0, - "unit": "nm" - } } }, { @@ -26420,6 +26420,12 @@ [0.298, 0.3005, 0.301, 0.3027] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } } } ], @@ -26429,12 +26435,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 536.0, - "unit": "nm" - } } }, { @@ -26485,6 +26485,12 @@ [0.307, 0.3087, 0.3098, 0.3114] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } } } ], @@ -26494,12 +26500,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 536.0, - "unit": "nm" - } } }, { @@ -26550,6 +26550,12 @@ [0.3086, 0.3096, 0.3111, 0.3128] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } } } ], @@ -26559,12 +26565,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 536.0, - "unit": "nm" - } } }, { @@ -26615,6 +26615,12 @@ [0.303, 0.3051, 0.3061, 0.308] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 538.0, + "unit": "nm" + } } } ], @@ -26624,12 +26630,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 538.0, - "unit": "nm" - } } }, { @@ -26680,6 +26680,12 @@ [0.2957, 0.2968, 0.2979, 0.2988] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -26689,12 +26695,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -26745,6 +26745,12 @@ [0.3121, 0.3134, 0.3144, 0.3152] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -26754,12 +26760,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -26810,6 +26810,12 @@ [0.2613, 0.2626, 0.264, 0.2655] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 538.0, + "unit": "nm" + } } } ], @@ -26819,12 +26825,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 538.0, - "unit": "nm" - } } }, { @@ -26875,6 +26875,12 @@ [0.2665, 0.2682, 0.2697, 0.2709] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 540.0, + "unit": "nm" + } } } ], @@ -26884,12 +26890,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 540.0, - "unit": "nm" - } } }, { @@ -26940,6 +26940,12 @@ [0.2946, 0.2961, 0.2967, 0.2976] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -26949,12 +26955,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -27005,6 +27005,12 @@ [0.3157, 0.3164, 0.3175, 0.3182] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -27014,12 +27020,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -27070,6 +27070,12 @@ [0.1399, 0.14, 0.1408, 0.1404] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -27079,12 +27085,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -27135,6 +27135,12 @@ [0.1242, 0.1245, 0.1247, 0.1248] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -27144,12 +27150,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -27200,6 +27200,12 @@ [0.0775, 0.0779, 0.0782, 0.0778] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 552.0, + "unit": "nm" + } } } ], @@ -27209,12 +27215,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 552.0, - "unit": "nm" - } } }, { @@ -27265,6 +27265,12 @@ [0.061, 0.0614, 0.0614, 0.0613] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 554.0, + "unit": "nm" + } } } ], @@ -27274,12 +27280,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 554.0, - "unit": "nm" - } } }, { @@ -27330,6 +27330,12 @@ [0.0974, 0.0972, 0.0977, 0.097] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } } } ], @@ -27339,12 +27345,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } } }, { @@ -27395,6 +27395,12 @@ [0.0687, 0.0686, 0.0688, 0.0685] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -27404,12 +27410,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -27460,6 +27460,12 @@ [0.0679, 0.0682, 0.0684, 0.0682] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -27469,12 +27475,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -27525,6 +27525,12 @@ [0.0508, 0.0511, 0.0511, 0.0509] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -27534,12 +27540,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -27590,6 +27590,12 @@ [0.317, 0.3185, 0.3181, 0.32] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -27599,12 +27605,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -27655,6 +27655,12 @@ [0.0361, 0.0361, 0.0361, 0.0359] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -27664,12 +27670,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -27720,6 +27720,12 @@ [0.3383, 0.3387, 0.3396, 0.3434] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -27729,12 +27735,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -27785,6 +27785,12 @@ [0.0357, 0.0356, 0.0356, 0.0353] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } } } ], @@ -27794,12 +27800,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 542.0, - "unit": "nm" - } } }, { @@ -27850,6 +27850,12 @@ [0.3007, 0.3034, 0.3033, 0.3047] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -27859,12 +27865,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -27915,6 +27915,12 @@ [0.036, 0.036, 0.036, 0.0357] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } } } ], @@ -27924,12 +27930,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 542.0, - "unit": "nm" - } } }, { @@ -27980,6 +27980,12 @@ [0.3202, 0.3221, 0.3231, 0.3246] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } } } ], @@ -27989,12 +27995,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 536.0, - "unit": "nm" - } } }, { @@ -28045,6 +28045,12 @@ [0.0461, 0.0462, 0.0462, 0.046] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -28054,12 +28060,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -28110,6 +28110,12 @@ [0.3208, 0.3225, 0.3237, 0.3253] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } } } ], @@ -28119,12 +28125,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } } }, { @@ -28175,6 +28175,12 @@ [0.039, 0.0391, 0.039, 0.0388] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -28184,12 +28190,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -28240,6 +28240,12 @@ [0.3303, 0.3313, 0.3321, 0.333] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -28249,12 +28255,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -28305,6 +28305,12 @@ [0.0371, 0.0371, 0.0372, 0.0369] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } } } ], @@ -28314,12 +28320,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 542.0, - "unit": "nm" - } } }, { @@ -28370,6 +28370,12 @@ [0.295, 0.2965, 0.2981, 0.2993] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 538.0, + "unit": "nm" + } } } ], @@ -28379,12 +28385,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 538.0, - "unit": "nm" - } } }, { @@ -28435,6 +28435,12 @@ [0.0395, 0.0395, 0.0397, 0.0392] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } } } ], @@ -28444,12 +28450,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } } }, { @@ -28500,6 +28500,12 @@ [0.2991, 0.3001, 0.3007, 0.3017] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } } } ], @@ -28509,12 +28515,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } } }, { @@ -28565,6 +28565,12 @@ [0.043, 0.0431, 0.0432, 0.0428] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -28574,12 +28580,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -28630,6 +28630,12 @@ [0.1371, 0.1374, 0.1376, 0.1379] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } } } ], @@ -28639,12 +28645,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } } }, { @@ -28695,6 +28695,12 @@ [0.0371, 0.0372, 0.0372, 0.0369] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -28704,12 +28710,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -28760,6 +28760,12 @@ [0.0712, 0.0716, 0.0717, 0.0717] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 554.0, + "unit": "nm" + } } } ], @@ -28769,12 +28775,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 554.0, - "unit": "nm" - } } }, { @@ -28825,6 +28825,12 @@ [0.0363, 0.0364, 0.0363, 0.036] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } } } ], @@ -28834,12 +28840,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 534.0, - "unit": "nm" - } } }, { @@ -28890,6 +28890,12 @@ [0.0751, 0.0752, 0.0755, 0.0751] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -28899,12 +28905,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } }, { @@ -28955,6 +28955,12 @@ [0.0367, 0.0367, 0.0367, 0.0365] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } } } ], @@ -28964,12 +28970,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 542.0, - "unit": "nm" - } } }, { @@ -29020,6 +29020,12 @@ [0.1226, 0.1231, 0.1233, 0.1225] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 540.0, + "unit": "nm" + } } } ], @@ -29029,12 +29035,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 540.0, - "unit": "nm" - } } }, { @@ -29085,6 +29085,12 @@ [0.0365, 0.0365, 0.0366, 0.0362] ] } + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } } } ], @@ -29094,12 +29100,6 @@ "unit": "#" }, "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } } } ], @@ -48973,7 +48973,7 @@ "UNC path": "tests/parsers/moldev_softmax_pro/testdata/spectrum_data.txt", "file name": "spectrum_data.txt", "ASM converter name": "allotropy_molecular_devices_softmax_pro", - "ASM converter version": "0.1.93", + "ASM converter version": "0.1.97", "software name": "SoftMax Pro" }, "device system document": {