diff --git a/src/allotropy/parsers/revvity_kaleido/kaleido_structure.py b/src/allotropy/parsers/revvity_kaleido/kaleido_structure.py index d2d798c5f2..2540b9b2ad 100644 --- a/src/allotropy/parsers/revvity_kaleido/kaleido_structure.py +++ b/src/allotropy/parsers/revvity_kaleido/kaleido_structure.py @@ -6,6 +6,7 @@ import logging from pathlib import Path import re +from typing import Any import pandas as pd @@ -235,6 +236,7 @@ class MeasurementInfo: measurement_time: str protocol_signature: str measurement_signature: str + custom_info: dict[str, Any] @staticmethod def create( @@ -253,14 +255,15 @@ def create( reader.lines_as_df(lines, index_col=0, names=range(max_num_cols)), msg=f"Unable to parser data for {section_name} section.", ).T.dropna(how="all") - df.columns = df.columns.astype(str).str.strip(":") + df.columns = df.columns.astype(str).str.lower().str.strip(":") data = df_to_series_data(df, index=0) return MeasurementInfo( - instrument_serial_number=data[str, "Instrument Serial Number"], - measurement_time=data[str, "Measurement Started"], - protocol_signature=data[str, "Protocol Signature"], - measurement_signature=data[str, "Measurement Signature"], + instrument_serial_number=data[str, "instrument serial number"], + measurement_time=data[str, "measurement started"], + protocol_signature=data[str, "protocol signature"], + measurement_signature=data[str, "measurement signature"], + custom_info=data.get_unread(skip={"software version", "barcode", "nan"}), ) @@ -350,15 +353,21 @@ def create( class Measurements: channels: list[Channel] number_of_averages: float | None + detector_distance_luminiscence: float | None detector_distance: float | None scan_position: ScanPositionSettingPlateReader | None emission_wavelength: float | None excitation_wavelength: float | None focus_height: float | None + device_control_custom_info: dict[str, Any] + custom_info: dict[str, Any] | None = None @staticmethod def create( - reader: CsvReader, section_title: str, next_section_title: str + reader: CsvReader, + section_title: str, + next_section_title: str, + measurement_info: MeasurementInfo, ) -> Measurements: assert_not_none( reader.drop_until_inclusive(f"^{section_title}"), @@ -382,7 +391,8 @@ def create( return Measurements( channels=Measurements.create_channels(data), number_of_averages=data.get(float, "number of flashes"), - detector_distance=data.get( + detector_distance=data.get(float, "measurement height [mm]"), + detector_distance_luminiscence=data.get( float, "distance between plate and detector [mm]" ), scan_position=( @@ -400,21 +410,47 @@ def create( else try_float_or_none(excitation_wavelength.removesuffix("nm")) ), focus_height=data.get(float, "focus height [µm]"), + device_control_custom_info={ + "number of flashes integrated": data.get( + float, "number of flashes integrated" + ), + "flash power": data.get(float, "flash power"), + "measurement mode setting": data.get(str, "measurement mode"), + "start plate repeat each [s]": measurement_info.custom_info.get( + "start plate repeat each [s]", None + ), + "number of plate repeats": measurement_info.custom_info.get( + "number of plate repeats", None + ), + "sequence executed by": measurement_info.custom_info.get( + "sequence executed by", None + ), + "filter set": data.get(str, "filter set"), + "generate bright field": data.get(bool, "generate bright field"), + "digital phase contrast": data.get(bool, "digital phase contrast"), + "generate dpc": data.get(bool, "generate dpc"), + }, + custom_info=data.get_unread( + skip={ + "tech", + "operation", + "nan", + } + ), ) @staticmethod def create_channels(data: SeriesData) -> list[Channel]: # Get all channel keys - values = { - key: data.series.get(key) - for key in [ - "channel", - "excitation wavelength [nm]", - "excitation power [%]", - "exposure time [ms]", - "additional focus offset [mm]", - ] - } + channel_keys = [ + "channel", + "excitation wavelength [nm]", + "excitation power [%]", + "exposure time [ms]", + "additional focus offset [mm]", + ] + values = {key: data.series.get(key) for key in channel_keys} + data.mark_read(set(channel_keys)) if values["channel"] is None: return [] @@ -479,6 +515,7 @@ def create_metadata(data: Data, file_path: str) -> Metadata: model_number=constants.MODEL_NUMBER, product_manufacturer=constants.PRODUCT_MANUFACTURER, equipment_serial_number=data.measurement_info.instrument_serial_number, + custom_info=data.measurement_info.custom_info, ) @@ -513,7 +550,9 @@ def _create_measurement(data: Data, well_position: str, well_value: str) -> Meas well_plate_identifier=data.results.barcode, sample_role_type=data.platemap.get_sample_role_type(well_position), number_of_averages=data.measurements.number_of_averages, - detector_distance_setting=data.measurements.detector_distance, + detector_distance_setting=data.measurements.detector_distance_luminiscence + if experiment_type is ExperimentType.LUMINESCENCE + else data.measurements.detector_distance, scan_position_setting=data.measurements.scan_position, detector_wavelength_setting=detector_wavelength_setting, excitation_wavelength_setting=data.measurements.excitation_wavelength, @@ -526,12 +565,23 @@ def _create_measurement(data: Data, well_position: str, well_value: str) -> Meas luminescence=measurement_value if experiment_type is ExperimentType.LUMINESCENCE else None, + device_control_custom_info=data.measurements.device_control_custom_info, + custom_info=data.measurements.custom_info, ) def _create_optical_measurement( data: Data, well_position: str, channel: Channel ) -> Measurement: + device_control_custom_info = { + **data.measurements.device_control_custom_info, + "additional focus offset [mm]": channel.additional_focus_offset, + } + if channel.name != "BRIGHTFIELD": + to_remove = ["generate bright field", "digital phase contrast", "generate dpc"] + for key in to_remove: + device_control_custom_info.pop(key, None) + return Measurement( type_=data.background_info.experiment_type.measurement_type, identifier=random_uuid_str(), @@ -550,6 +600,8 @@ def _create_optical_measurement( illumination_setting_unit="%", transmitted_light_setting=channel.transmitted_light, fluorescent_tag_setting=channel.fluorescent_tag, + device_control_custom_info=device_control_custom_info, + custom_info=data.measurements.custom_info, ) @@ -566,6 +618,16 @@ def _create_measurements( def create_measurement_groups(data: Data) -> list[MeasurementGroup]: + protocol_owner = data.measurement_info.custom_info.pop("protocol owner", None) + measurement_finished = data.measurement_info.custom_info.pop( + "measurement finished", None + ) + protocol_name = data.measurement_info.custom_info.pop("protocol name", None) + + data.measurement_info.custom_info.pop("sequence executed by", None) + data.measurement_info.custom_info.pop("number of plate repeats", None) + data.measurement_info.custom_info.pop("start plate repeat each [s]", None) + return [ MeasurementGroup( measurement_time=data.measurement_info.measurement_time, @@ -596,6 +658,11 @@ def create_measurement_groups(data: Data) -> list[MeasurementGroup]: ] if data.background_info.experiment_type is ExperimentType.OPTICAL_IMAGING else None, + custom_info={ + "protocol owner": protocol_owner, + "measurement finished": measurement_finished, + "protocol name": protocol_name, + }, ) for well_position, well_value in data.iter_wells() ] diff --git a/src/allotropy/parsers/revvity_kaleido/kaleido_structure_v2.py b/src/allotropy/parsers/revvity_kaleido/kaleido_structure_v2.py index 498afb44e1..ffcacf1fc0 100644 --- a/src/allotropy/parsers/revvity_kaleido/kaleido_structure_v2.py +++ b/src/allotropy/parsers/revvity_kaleido/kaleido_structure_v2.py @@ -27,12 +27,20 @@ def read_barcode(cls, reader: CsvReader) -> str: def create_data_v2(version: str, reader: CsvReader) -> Data: + background_info = BackgroundInfo.create(reader) + results = ResultsV2.create(reader) + analysis_result = AnalysisResult.create_results( + reader, "Measurement Basic Information" + ) + measurement_info = MeasurementInfo.create( + reader, "Measurement Basic Information", "Plate Type" + ) return Data( version, - BackgroundInfo.create(reader), - ResultsV2.create(reader), - AnalysisResult.create_results(reader, "Measurement Basic Information"), - MeasurementInfo.create(reader, "Measurement Basic Information", "Plate Type"), + background_info, + results, + analysis_result, + measurement_info, Platemap.create(reader), - Measurements.create(reader, "Measurements", "Analysis"), + Measurements.create(reader, "Measurements", "Analysis", measurement_info), ) diff --git a/src/allotropy/parsers/revvity_kaleido/kaleido_structure_v3.py b/src/allotropy/parsers/revvity_kaleido/kaleido_structure_v3.py index d2cc4b9ef7..52c7e5a412 100644 --- a/src/allotropy/parsers/revvity_kaleido/kaleido_structure_v3.py +++ b/src/allotropy/parsers/revvity_kaleido/kaleido_structure_v3.py @@ -30,16 +30,23 @@ def read_barcode(cls, reader: CsvReader) -> str: def create_data_v3(version: str, reader: CsvReader) -> Data: + background_info = BackgroundInfo.create(reader) + results = ResultsV3.create(reader) + analysis_result = AnalysisResult.create_results(reader, "Measurement Information") + measurement_info = MeasurementInfo.create( + reader, "Measurement Information", "Plate Type Information" + ) return Data( version, - BackgroundInfo.create(reader), - ResultsV3.create(reader), - AnalysisResult.create_results(reader, "Measurement Information"), - MeasurementInfo.create( - reader, "Measurement Information", "Plate Type Information" - ), + background_info, + results, + analysis_result, + measurement_info, Platemap.create(reader), Measurements.create( - reader, "Details of Measurement Sequence", "Post Processing Sequence" + reader, + "Details of Measurement Sequence", + "Post Processing Sequence", + measurement_info, ), ) diff --git a/tests/parsers/revvity_kaleido/testdata/absorbance/absorbance_endpoint_single_plate_example_01.json b/tests/parsers/revvity_kaleido/testdata/absorbance/absorbance_endpoint_single_plate_example_01.json index cbb7c5c5da..72066f1d0f 100644 --- a/tests/parsers/revvity_kaleido/testdata/absorbance/absorbance_endpoint_single_plate_example_01.json +++ b/tests/parsers/revvity_kaleido/testdata/absorbance/absorbance_endpoint_single_plate_example_01.json @@ -17,6 +17,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -24,6 +28,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -42,7 +53,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -60,6 +76,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -67,6 +87,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -85,7 +112,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -103,6 +135,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -110,6 +146,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -128,7 +171,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -146,6 +194,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -153,6 +205,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -171,7 +230,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -189,6 +253,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -196,6 +264,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -214,7 +289,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -232,6 +312,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -239,6 +323,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -257,7 +348,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -275,6 +371,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -282,6 +382,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -300,7 +407,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -318,6 +430,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -325,6 +441,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -343,7 +466,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -361,6 +489,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -368,6 +500,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -386,7 +525,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -404,6 +548,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -411,6 +559,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -429,7 +584,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -447,6 +607,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -454,6 +618,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -472,7 +643,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -490,6 +666,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -497,6 +677,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -515,7 +702,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -533,6 +725,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -540,6 +736,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -558,7 +761,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -576,6 +784,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -583,6 +795,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -601,7 +820,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -619,6 +843,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -626,6 +854,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -644,7 +879,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -662,6 +902,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -669,6 +913,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -687,7 +938,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -705,6 +961,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -712,6 +972,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -730,7 +997,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -748,6 +1020,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -755,6 +1031,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -773,7 +1056,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -791,6 +1079,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -798,6 +1090,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -816,7 +1115,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -834,6 +1138,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -841,6 +1149,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -859,7 +1174,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -877,6 +1197,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -884,6 +1208,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -902,7 +1233,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -920,6 +1256,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -927,6 +1267,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -945,7 +1292,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -963,6 +1315,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -970,6 +1326,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -988,7 +1351,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1006,6 +1374,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1013,6 +1385,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1031,7 +1410,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1049,6 +1433,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1056,6 +1444,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1074,7 +1469,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1092,6 +1492,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1099,6 +1503,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1117,7 +1528,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1135,6 +1551,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1142,6 +1562,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1160,7 +1587,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1178,6 +1610,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1185,6 +1621,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1203,7 +1646,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1221,6 +1669,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1228,6 +1680,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1246,7 +1705,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1264,6 +1728,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1271,6 +1739,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1289,7 +1764,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1307,6 +1787,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1314,6 +1798,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1332,7 +1823,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1350,6 +1846,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1357,6 +1857,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1375,7 +1882,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1393,6 +1905,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1400,6 +1916,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1418,7 +1941,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1436,6 +1964,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1443,6 +1975,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1461,7 +2000,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1479,6 +2023,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1486,6 +2034,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1504,7 +2059,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1522,6 +2082,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1529,6 +2093,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1547,7 +2118,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1565,6 +2141,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1572,6 +2152,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1590,7 +2177,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1608,6 +2200,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1615,6 +2211,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1633,7 +2236,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1651,6 +2259,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1658,6 +2270,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1676,7 +2295,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1694,6 +2318,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1701,6 +2329,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1719,7 +2354,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1737,6 +2377,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1744,6 +2388,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1762,7 +2413,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1780,6 +2436,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1787,6 +2447,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1805,7 +2472,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1823,6 +2495,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1830,6 +2506,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1848,7 +2531,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1866,6 +2554,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1873,6 +2565,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1891,7 +2590,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1909,6 +2613,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1916,6 +2624,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1934,7 +2649,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1952,6 +2672,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1959,6 +2683,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -1977,7 +2708,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -1995,6 +2731,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2002,6 +2742,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2020,7 +2767,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2038,6 +2790,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2045,6 +2801,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2063,7 +2826,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2081,6 +2849,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2088,6 +2860,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2106,7 +2885,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2124,6 +2908,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2131,6 +2919,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2149,7 +2944,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2167,6 +2967,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2174,6 +2978,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2192,7 +3003,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2210,6 +3026,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2217,6 +3037,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2235,7 +3062,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2253,6 +3085,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2260,6 +3096,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2278,7 +3121,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2296,6 +3144,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2303,6 +3155,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2321,7 +3180,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2339,6 +3203,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2346,6 +3214,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2364,7 +3239,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2382,6 +3262,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2389,6 +3273,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2407,7 +3298,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2425,6 +3321,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2432,6 +3332,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2450,7 +3357,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2468,6 +3380,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2475,6 +3391,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2493,7 +3416,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2511,6 +3439,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2518,6 +3450,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2536,7 +3475,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2554,6 +3498,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2561,6 +3509,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2579,7 +3534,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2597,6 +3557,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2604,6 +3568,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2622,7 +3593,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2640,6 +3616,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2647,6 +3627,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2665,7 +3652,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2683,6 +3675,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2690,6 +3686,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2708,7 +3711,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2726,6 +3734,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2733,6 +3745,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2751,7 +3770,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2769,6 +3793,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2776,6 +3804,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2794,7 +3829,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2812,6 +3852,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2819,6 +3863,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2837,7 +3888,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2855,6 +3911,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2862,6 +3922,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2880,7 +3947,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2898,6 +3970,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2905,6 +3981,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2923,7 +4006,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2941,6 +4029,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2948,6 +4040,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -2966,7 +4065,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -2984,6 +4088,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2991,6 +4099,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3009,7 +4124,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3027,6 +4147,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3034,6 +4158,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3052,7 +4183,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3070,6 +4206,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3077,6 +4217,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3095,7 +4242,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3113,6 +4265,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3120,6 +4276,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3138,7 +4301,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3156,6 +4324,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3163,6 +4335,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3181,7 +4360,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3199,6 +4383,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3206,6 +4394,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3224,7 +4419,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3242,6 +4442,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3249,6 +4453,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3267,7 +4478,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3285,6 +4501,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3292,6 +4512,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3310,7 +4537,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3328,6 +4560,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3335,6 +4571,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3353,7 +4596,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3371,6 +4619,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3378,6 +4630,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3396,7 +4655,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3414,6 +4678,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3421,6 +4689,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3439,7 +4714,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3457,6 +4737,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3464,6 +4748,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3482,7 +4773,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3500,6 +4796,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3507,6 +4807,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3525,7 +4832,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3543,6 +4855,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3550,6 +4866,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3568,7 +4891,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3586,6 +4914,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3593,6 +4925,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3611,7 +4950,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3629,6 +4973,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3636,6 +4984,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3654,7 +5009,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3672,6 +5032,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3679,6 +5043,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3697,7 +5068,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3715,6 +5091,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3722,6 +5102,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3740,7 +5127,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3758,6 +5150,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3765,6 +5161,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3783,7 +5186,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3801,6 +5209,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3808,6 +5220,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3826,7 +5245,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3844,6 +5268,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3851,6 +5279,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3869,7 +5304,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3887,6 +5327,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3894,6 +5338,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3912,7 +5363,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3930,6 +5386,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3937,6 +5397,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3955,7 +5422,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -3973,6 +5445,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3980,6 +5456,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -3998,7 +5481,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -4016,6 +5504,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4023,6 +5515,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -4041,7 +5540,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -4059,6 +5563,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4066,6 +5574,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -4084,7 +5599,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } }, { @@ -4102,6 +5622,10 @@ { "device type": "absorbance detector", "detection type": "ABS mono", + "detector distance setting (plate reader)": { + "value": 7.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4109,6 +5633,13 @@ "detector wavelength setting": { "value": 450.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 100.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0 } } ] @@ -4127,7 +5658,12 @@ "analytical method identifier": "69a44f44-3a97-425e-b799-32924a10957c", "experimental data identifier": "8a39c54f-1acd-4647-8149-6e1aeb531aff", "experiment type": "ABS mono", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2020-10-26T16:17:14.6440969-04:00", + "protocol name": "bar" + } } } ], @@ -4143,7 +5679,7 @@ "software name": "Kaleido", "software version": "2.0.3058.126", "ASM converter name": "allotropy_revvity_kaleido", - "ASM converter version": "0.1.61" + "ASM converter version": "0.1.105" } } } diff --git a/tests/parsers/revvity_kaleido/testdata/fluorescence/fluorescence_endpoint_single_plate_example_01.json b/tests/parsers/revvity_kaleido/testdata/fluorescence/fluorescence_endpoint_single_plate_example_01.json index e026903a4c..69fff23c60 100644 --- a/tests/parsers/revvity_kaleido/testdata/fluorescence/fluorescence_endpoint_single_plate_example_01.json +++ b/tests/parsers/revvity_kaleido/testdata/fluorescence/fluorescence_endpoint_single_plate_example_01.json @@ -17,6 +17,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -29,6 +33,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -47,7 +57,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -65,6 +80,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -77,6 +96,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -95,7 +120,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -113,6 +143,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -125,6 +159,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -143,7 +183,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -161,6 +206,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -173,6 +222,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -191,7 +246,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -209,6 +269,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -221,6 +285,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -239,7 +309,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -257,6 +332,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -269,6 +348,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -287,7 +372,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -305,6 +395,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -317,6 +411,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -335,7 +435,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -353,6 +458,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -365,6 +474,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -383,7 +498,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -401,6 +521,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -413,6 +537,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -431,7 +561,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -449,6 +584,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -461,6 +600,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -479,7 +624,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -497,6 +647,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -509,6 +663,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -527,7 +687,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -545,6 +710,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -557,6 +726,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -575,7 +750,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -593,6 +773,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -605,6 +789,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -623,7 +813,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -641,6 +836,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -653,6 +852,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -671,7 +876,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -689,6 +899,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -701,6 +915,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -719,7 +939,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -737,6 +962,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -749,6 +978,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -767,7 +1002,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -785,6 +1025,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -797,6 +1041,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -815,7 +1065,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -833,6 +1088,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -845,6 +1104,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -863,7 +1128,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -881,6 +1151,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -893,6 +1167,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -911,7 +1191,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -929,6 +1214,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -941,6 +1230,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -959,7 +1254,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -977,6 +1277,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -989,6 +1293,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1007,7 +1317,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1025,6 +1340,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1037,6 +1356,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1055,7 +1380,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1073,6 +1403,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1085,6 +1419,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1103,7 +1443,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1121,6 +1466,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1133,6 +1482,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1151,7 +1506,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1169,6 +1529,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1181,6 +1545,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1199,7 +1569,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1217,6 +1592,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1229,6 +1608,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1247,7 +1632,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1265,6 +1655,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1277,6 +1671,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1295,7 +1695,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1313,6 +1718,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1325,6 +1734,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1343,7 +1758,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1361,6 +1781,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1373,6 +1797,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1391,7 +1821,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1409,6 +1844,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1421,6 +1860,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1439,7 +1884,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1457,6 +1907,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1469,6 +1923,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1487,7 +1947,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1505,6 +1970,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1517,6 +1986,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1535,7 +2010,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1553,6 +2033,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1565,6 +2049,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1583,7 +2073,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1601,6 +2096,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1613,6 +2112,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1631,7 +2136,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1649,6 +2159,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1661,6 +2175,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1679,7 +2199,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1697,6 +2222,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1709,6 +2238,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1727,7 +2262,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1745,6 +2285,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1757,6 +2301,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1775,7 +2325,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1793,6 +2348,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1805,6 +2364,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1823,7 +2388,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1841,6 +2411,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1853,6 +2427,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1871,7 +2451,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1889,6 +2474,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1901,6 +2490,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1919,7 +2514,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1937,6 +2537,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1949,6 +2553,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -1967,7 +2577,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -1985,6 +2600,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1997,6 +2616,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2015,7 +2640,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2033,6 +2663,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2045,6 +2679,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2063,7 +2703,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2081,6 +2726,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2093,6 +2742,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2111,7 +2766,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2129,6 +2789,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2141,6 +2805,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2159,7 +2829,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2177,6 +2852,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2189,6 +2868,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2207,7 +2892,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2225,6 +2915,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2237,6 +2931,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2255,7 +2955,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2273,6 +2978,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2285,6 +2994,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2303,7 +3018,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2321,6 +3041,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2333,6 +3057,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2351,7 +3081,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2369,6 +3104,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2381,6 +3120,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2399,7 +3144,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2417,6 +3167,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2429,6 +3183,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2447,7 +3207,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2465,6 +3230,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2477,6 +3246,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2495,7 +3270,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2513,6 +3293,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2525,6 +3309,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2543,7 +3333,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2561,6 +3356,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2573,6 +3372,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2591,7 +3396,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2609,6 +3419,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2621,6 +3435,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2639,7 +3459,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2657,6 +3482,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2669,6 +3498,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2687,7 +3522,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2705,6 +3545,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2717,6 +3561,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2735,7 +3585,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2753,6 +3608,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2765,6 +3624,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2783,7 +3648,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2801,6 +3671,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2813,6 +3687,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2831,7 +3711,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2849,6 +3734,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2861,6 +3750,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2879,7 +3774,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2897,6 +3797,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2909,6 +3813,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2927,7 +3837,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2945,6 +3860,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2957,6 +3876,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -2975,7 +3900,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -2993,6 +3923,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3005,6 +3939,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3023,7 +3963,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -3041,6 +3986,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3053,6 +4002,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3071,7 +4026,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -3089,6 +4049,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3101,6 +4065,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3119,7 +4089,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -3137,6 +4112,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3149,6 +4128,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3167,7 +4152,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -3185,6 +4175,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3197,6 +4191,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3215,7 +4215,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -3233,6 +4238,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3245,6 +4254,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3263,7 +4278,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -3281,6 +4301,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3293,6 +4317,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3311,7 +4341,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -3329,6 +4364,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3341,6 +4380,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3359,7 +4404,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -3377,6 +4427,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3389,6 +4443,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3407,7 +4467,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -3425,6 +4490,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3437,6 +4506,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3455,7 +4530,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -3473,6 +4553,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3485,6 +4569,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3503,7 +4593,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -3521,6 +4616,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3533,6 +4632,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3551,7 +4656,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -3569,6 +4679,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3581,6 +4695,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3599,7 +4719,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -3617,6 +4742,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3629,6 +4758,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3647,7 +4782,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -3665,6 +4805,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3677,6 +4821,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3695,7 +4845,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -3713,6 +4868,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3725,6 +4884,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3743,7 +4908,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -3761,6 +4931,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3773,6 +4947,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3791,7 +4971,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -3809,6 +4994,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3821,6 +5010,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3839,7 +5034,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -3857,6 +5057,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3869,6 +5073,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3887,7 +5097,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -3905,6 +5120,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3917,6 +5136,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3935,7 +5160,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -3953,6 +5183,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3965,6 +5199,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -3983,7 +5223,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4001,6 +5246,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4013,6 +5262,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4031,7 +5286,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4049,6 +5309,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4061,6 +5325,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4079,7 +5349,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4097,6 +5372,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4109,6 +5388,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4127,7 +5412,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4145,6 +5435,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4157,6 +5451,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4175,7 +5475,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4193,6 +5498,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4205,6 +5514,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4223,7 +5538,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4241,6 +5561,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4253,6 +5577,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4271,7 +5601,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4289,6 +5624,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4301,6 +5640,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4319,7 +5664,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4337,6 +5687,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4349,6 +5703,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4367,7 +5727,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4385,6 +5750,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4397,6 +5766,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4415,7 +5790,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4433,6 +5813,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4445,6 +5829,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4463,7 +5853,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4481,6 +5876,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4493,6 +5892,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4511,7 +5916,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4529,6 +5939,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4541,6 +5955,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4559,7 +5979,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4577,6 +6002,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4589,6 +6018,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4607,7 +6042,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4625,6 +6065,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4637,6 +6081,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4655,7 +6105,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4673,6 +6128,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4685,6 +6144,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4703,7 +6168,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4721,6 +6191,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4733,6 +6207,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4751,7 +6231,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4769,6 +6254,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4781,6 +6270,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4799,7 +6294,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4817,6 +6317,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4829,6 +6333,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4847,7 +6357,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4865,6 +6380,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4877,6 +6396,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4895,7 +6420,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4913,6 +6443,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4925,6 +6459,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4943,7 +6483,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -4961,6 +6506,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4973,6 +6522,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -4991,7 +6546,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5009,6 +6569,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5021,6 +6585,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5039,7 +6609,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5057,6 +6632,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5069,6 +6648,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5087,7 +6672,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5105,6 +6695,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5117,6 +6711,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5135,7 +6735,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5153,6 +6758,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5165,6 +6774,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5183,7 +6798,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5201,6 +6821,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5213,6 +6837,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5231,7 +6861,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5249,6 +6884,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5261,6 +6900,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5279,7 +6924,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5297,6 +6947,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5309,6 +6963,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5327,7 +6987,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5345,6 +7010,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5357,6 +7026,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5375,7 +7050,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5393,6 +7073,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5405,6 +7089,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5423,7 +7113,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5441,6 +7136,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5453,6 +7152,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5471,7 +7176,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5489,6 +7199,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5501,6 +7215,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5519,7 +7239,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5537,6 +7262,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5549,6 +7278,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5567,7 +7302,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5585,6 +7325,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5597,6 +7341,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5615,7 +7365,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5633,6 +7388,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5645,6 +7404,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5663,7 +7428,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5681,6 +7451,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5693,6 +7467,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5711,7 +7491,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5729,6 +7514,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5741,6 +7530,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5759,7 +7554,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5777,6 +7577,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5789,6 +7593,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5807,7 +7617,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5825,6 +7640,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5837,6 +7656,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5855,7 +7680,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5873,6 +7703,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5885,6 +7719,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5903,7 +7743,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5921,6 +7766,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5933,6 +7782,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5951,7 +7806,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -5969,6 +7829,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -5981,6 +7845,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -5999,7 +7869,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6017,6 +7892,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6029,6 +7908,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -6047,7 +7932,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6065,6 +7955,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6077,6 +7971,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -6095,7 +7995,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6113,6 +8018,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6125,6 +8034,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -6143,7 +8058,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6161,6 +8081,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6173,6 +8097,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -6191,7 +8121,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6209,6 +8144,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6221,6 +8160,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -6239,7 +8184,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6257,6 +8207,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6269,6 +8223,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -6287,7 +8247,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6305,6 +8270,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6317,6 +8286,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -6335,7 +8310,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6353,6 +8333,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6365,6 +8349,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -6383,7 +8373,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6401,6 +8396,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6413,6 +8412,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -6431,7 +8436,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6449,6 +8459,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6461,6 +8475,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -6479,7 +8499,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6497,6 +8522,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6509,6 +8538,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -6527,7 +8562,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6545,6 +8585,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6557,6 +8601,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -6575,7 +8625,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6593,6 +8648,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6605,6 +8664,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -6623,7 +8688,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6641,6 +8711,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6653,6 +8727,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -6671,7 +8751,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6689,6 +8774,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6701,6 +8790,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -6719,7 +8814,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6737,6 +8837,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6749,6 +8853,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -6767,7 +8877,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6785,6 +8900,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6797,6 +8916,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -6815,7 +8940,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6833,6 +8963,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6845,6 +8979,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -6863,7 +9003,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6881,6 +9026,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6893,6 +9042,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -6911,7 +9066,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6929,6 +9089,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6941,6 +9105,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -6959,7 +9129,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -6977,6 +9152,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -6989,6 +9168,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7007,7 +9192,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7025,6 +9215,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7037,6 +9231,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7055,7 +9255,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7073,6 +9278,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7085,6 +9294,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7103,7 +9318,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7121,6 +9341,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7133,6 +9357,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7151,7 +9381,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7169,6 +9404,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7181,6 +9420,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7199,7 +9444,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7217,6 +9467,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7229,6 +9483,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7247,7 +9507,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7265,6 +9530,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7277,6 +9546,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7295,7 +9570,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7313,6 +9593,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7325,6 +9609,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7343,7 +9633,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7361,6 +9656,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7373,6 +9672,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7391,7 +9696,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7409,6 +9719,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7421,6 +9735,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7439,7 +9759,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7457,6 +9782,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7469,6 +9798,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7487,7 +9822,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7505,6 +9845,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7517,6 +9861,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7535,7 +9885,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7553,6 +9908,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7565,6 +9924,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7583,7 +9948,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7601,6 +9971,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7613,6 +9987,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7631,7 +10011,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7649,6 +10034,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7661,6 +10050,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7679,7 +10074,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7697,6 +10097,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7709,6 +10113,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7727,7 +10137,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7745,6 +10160,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7757,6 +10176,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7775,7 +10200,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7793,6 +10223,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7805,6 +10239,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7823,7 +10263,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7841,6 +10286,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7853,6 +10302,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7871,7 +10326,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7889,6 +10349,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7901,6 +10365,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7919,7 +10389,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7937,6 +10412,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7949,6 +10428,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -7967,7 +10452,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -7985,6 +10475,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -7997,6 +10491,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8015,7 +10515,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8033,6 +10538,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -8045,6 +10554,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8063,7 +10578,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8081,6 +10601,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -8093,6 +10617,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8111,7 +10641,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8129,6 +10664,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -8141,6 +10680,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8159,7 +10704,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8177,6 +10727,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -8189,6 +10743,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8207,7 +10767,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8225,6 +10790,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -8237,6 +10806,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8255,7 +10830,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8273,6 +10853,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -8285,6 +10869,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8303,7 +10893,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8321,6 +10916,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -8333,6 +10932,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8351,7 +10956,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8369,6 +10979,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -8381,6 +10995,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8399,7 +11019,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8417,6 +11042,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -8429,6 +11058,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8447,7 +11082,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8465,6 +11105,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -8477,6 +11121,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8495,7 +11145,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8513,6 +11168,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -8525,6 +11184,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8543,7 +11208,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8561,6 +11231,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -8573,6 +11247,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8591,7 +11271,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8609,6 +11294,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -8621,6 +11310,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8639,7 +11334,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8657,6 +11357,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -8669,6 +11373,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8687,7 +11397,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8705,6 +11420,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -8717,6 +11436,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8735,7 +11460,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8753,6 +11483,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -8765,6 +11499,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8783,7 +11523,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8801,6 +11546,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -8813,6 +11562,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8831,7 +11586,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8849,6 +11609,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -8861,6 +11625,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8879,7 +11649,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8897,6 +11672,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -8909,6 +11688,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8927,7 +11712,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8945,6 +11735,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -8957,6 +11751,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -8975,7 +11775,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -8993,6 +11798,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9005,6 +11814,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9023,7 +11838,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -9041,6 +11861,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9053,6 +11877,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9071,7 +11901,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -9089,6 +11924,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9101,6 +11940,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9119,7 +11964,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -9137,6 +11987,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9149,6 +12003,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9167,7 +12027,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -9185,6 +12050,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9197,6 +12066,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9215,7 +12090,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -9233,6 +12113,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9245,6 +12129,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9263,7 +12153,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -9281,6 +12176,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9293,6 +12192,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9311,7 +12216,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -9329,6 +12239,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9341,6 +12255,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9359,7 +12279,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -9377,6 +12302,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9389,6 +12318,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9407,7 +12342,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -9425,6 +12365,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9437,6 +12381,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9455,7 +12405,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -9473,6 +12428,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9485,6 +12444,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9503,7 +12468,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -9521,6 +12491,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9533,6 +12507,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9551,7 +12531,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -9569,6 +12554,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9581,6 +12570,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9599,7 +12594,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -9617,6 +12617,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9629,6 +12633,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9647,7 +12657,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -9665,6 +12680,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9677,6 +12696,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9695,7 +12720,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -9713,6 +12743,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9725,6 +12759,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9743,7 +12783,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -9761,6 +12806,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9773,6 +12822,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9791,7 +12846,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -9809,6 +12869,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9821,6 +12885,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9839,7 +12909,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -9857,6 +12932,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9869,6 +12948,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9887,7 +12972,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -9905,6 +12995,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9917,6 +13011,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9935,7 +13035,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -9953,6 +13058,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -9965,6 +13074,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -9983,7 +13098,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10001,6 +13121,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10013,6 +13137,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10031,7 +13161,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10049,6 +13184,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10061,6 +13200,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10079,7 +13224,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10097,6 +13247,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10109,6 +13263,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10127,7 +13287,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10145,6 +13310,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10157,6 +13326,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10175,7 +13350,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10193,6 +13373,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10205,6 +13389,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10223,7 +13413,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10241,6 +13436,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10253,6 +13452,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10271,7 +13476,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10289,6 +13499,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10301,6 +13515,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10319,7 +13539,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10337,6 +13562,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10349,6 +13578,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10367,7 +13602,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10385,6 +13625,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10397,6 +13641,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10415,7 +13665,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10433,6 +13688,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10445,6 +13704,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10463,7 +13728,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10481,6 +13751,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10493,6 +13767,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10511,7 +13791,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10529,6 +13814,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10541,6 +13830,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10559,7 +13854,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10577,6 +13877,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10589,6 +13893,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10607,7 +13917,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10625,6 +13940,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10637,6 +13956,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10655,7 +13980,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10673,6 +14003,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10685,6 +14019,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10703,7 +14043,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10721,6 +14066,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10733,6 +14082,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10751,7 +14106,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10769,6 +14129,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10781,6 +14145,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10799,7 +14169,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10817,6 +14192,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10829,6 +14208,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10847,7 +14232,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10865,6 +14255,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10877,6 +14271,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10895,7 +14295,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10913,6 +14318,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10925,6 +14334,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10943,7 +14358,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -10961,6 +14381,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -10973,6 +14397,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -10991,7 +14421,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11009,6 +14444,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11021,6 +14460,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11039,7 +14484,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11057,6 +14507,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11069,6 +14523,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11087,7 +14547,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11105,6 +14570,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11117,6 +14586,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11135,7 +14610,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11153,6 +14633,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11165,6 +14649,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11183,7 +14673,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11201,6 +14696,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11213,6 +14712,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11231,7 +14736,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11249,6 +14759,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11261,6 +14775,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11279,7 +14799,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11297,6 +14822,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11309,6 +14838,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11327,7 +14862,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11345,6 +14885,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11357,6 +14901,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11375,7 +14925,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11393,6 +14948,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11405,6 +14964,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11423,7 +14988,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11441,6 +15011,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11453,6 +15027,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11471,7 +15051,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11489,6 +15074,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11501,6 +15090,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11519,7 +15114,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11537,6 +15137,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11549,6 +15153,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11567,7 +15177,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11585,6 +15200,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11597,6 +15216,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11615,7 +15240,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11633,6 +15263,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11645,6 +15279,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11663,7 +15303,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11681,6 +15326,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11693,6 +15342,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11711,7 +15366,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11729,6 +15389,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11741,6 +15405,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11759,7 +15429,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11777,6 +15452,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11789,6 +15468,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11807,7 +15492,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11825,6 +15515,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11837,6 +15531,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11855,7 +15555,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11873,6 +15578,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11885,6 +15594,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11903,7 +15618,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11921,6 +15641,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11933,6 +15657,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11951,7 +15681,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -11969,6 +15704,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -11981,6 +15720,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -11999,7 +15744,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12017,6 +15767,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12029,6 +15783,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -12047,7 +15807,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12065,6 +15830,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12077,6 +15846,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -12095,7 +15870,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12113,6 +15893,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12125,6 +15909,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -12143,7 +15933,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12161,6 +15956,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12173,6 +15972,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -12191,7 +15996,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12209,6 +16019,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12221,6 +16035,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -12239,7 +16059,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12257,6 +16082,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12269,6 +16098,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -12287,7 +16122,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12305,6 +16145,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12317,6 +16161,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -12335,7 +16185,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12353,6 +16208,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12365,6 +16224,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -12383,7 +16248,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12401,6 +16271,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12413,6 +16287,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -12431,7 +16311,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12449,6 +16334,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12461,6 +16350,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -12479,7 +16374,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12497,6 +16397,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12509,6 +16413,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -12527,7 +16437,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12545,6 +16460,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12557,6 +16476,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -12575,7 +16500,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12593,6 +16523,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12605,6 +16539,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -12623,7 +16563,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12641,6 +16586,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12653,6 +16602,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -12671,7 +16626,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12689,6 +16649,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12701,6 +16665,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -12719,7 +16689,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12737,6 +16712,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12749,6 +16728,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -12767,7 +16752,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12785,6 +16775,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12797,6 +16791,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -12815,7 +16815,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12833,6 +16838,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12845,6 +16854,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -12863,7 +16878,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12881,6 +16901,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12893,6 +16917,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -12911,7 +16941,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12929,6 +16964,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12941,6 +16980,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -12959,7 +17004,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -12977,6 +17027,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -12989,6 +17043,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13007,7 +17067,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13025,6 +17090,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13037,6 +17106,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13055,7 +17130,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13073,6 +17153,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13085,6 +17169,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13103,7 +17193,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13121,6 +17216,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13133,6 +17232,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13151,7 +17256,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13169,6 +17279,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13181,6 +17295,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13199,7 +17319,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13217,6 +17342,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13229,6 +17358,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13247,7 +17382,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13265,6 +17405,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13277,6 +17421,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13295,7 +17445,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13313,6 +17468,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13325,6 +17484,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13343,7 +17508,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13361,6 +17531,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13373,6 +17547,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13391,7 +17571,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13409,6 +17594,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13421,6 +17610,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13439,7 +17634,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13457,6 +17657,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13469,6 +17673,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13487,7 +17697,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13505,6 +17720,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13517,6 +17736,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13535,7 +17760,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13553,6 +17783,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13565,6 +17799,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13583,7 +17823,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13601,6 +17846,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13613,6 +17862,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13631,7 +17886,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13649,6 +17909,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13661,6 +17925,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13679,7 +17949,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13697,6 +17972,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13709,6 +17988,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13727,7 +18012,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13745,6 +18035,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13757,6 +18051,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13775,7 +18075,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13793,6 +18098,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13805,6 +18114,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13823,7 +18138,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13841,6 +18161,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13853,6 +18177,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13871,7 +18201,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13889,6 +18224,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13901,6 +18240,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13919,7 +18264,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13937,6 +18287,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13949,6 +18303,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -13967,7 +18327,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -13985,6 +18350,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -13997,6 +18366,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14015,7 +18390,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14033,6 +18413,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -14045,6 +18429,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14063,7 +18453,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14081,6 +18476,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -14093,6 +18492,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14111,7 +18516,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14129,6 +18539,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -14141,6 +18555,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14159,7 +18579,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14177,6 +18602,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -14189,6 +18618,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14207,7 +18642,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14225,6 +18665,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -14237,6 +18681,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14255,7 +18705,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14273,6 +18728,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -14285,6 +18744,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14303,7 +18768,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14321,6 +18791,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -14333,6 +18807,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14351,7 +18831,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14369,6 +18854,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -14381,6 +18870,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14399,7 +18894,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14417,6 +18917,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -14429,6 +18933,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14447,7 +18957,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14465,6 +18980,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -14477,6 +18996,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14495,7 +19020,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14513,6 +19043,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -14525,6 +19059,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14543,7 +19083,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14561,6 +19106,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -14573,6 +19122,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14591,7 +19146,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14609,6 +19169,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -14621,6 +19185,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14639,7 +19209,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14657,6 +19232,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -14669,6 +19248,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14687,7 +19272,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14705,6 +19295,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -14717,6 +19311,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14735,7 +19335,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14753,6 +19358,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -14765,6 +19374,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14783,7 +19398,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14801,6 +19421,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -14813,6 +19437,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14831,7 +19461,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14849,6 +19484,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -14861,6 +19500,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14879,7 +19524,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14897,6 +19547,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -14909,6 +19563,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14927,7 +19587,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14945,6 +19610,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -14957,6 +19626,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -14975,7 +19650,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -14993,6 +19673,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15005,6 +19689,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15023,7 +19713,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -15041,6 +19736,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15053,6 +19752,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15071,7 +19776,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -15089,6 +19799,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15101,6 +19815,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15119,7 +19839,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -15137,6 +19862,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15149,6 +19878,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15167,7 +19902,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -15185,6 +19925,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15197,6 +19941,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15215,7 +19965,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -15233,6 +19988,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15245,6 +20004,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15263,7 +20028,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -15281,6 +20051,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15293,6 +20067,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15311,7 +20091,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -15329,6 +20114,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15341,6 +20130,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15359,7 +20154,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -15377,6 +20177,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15389,6 +20193,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15407,7 +20217,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -15425,6 +20240,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15437,6 +20256,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15455,7 +20280,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -15473,6 +20303,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15485,6 +20319,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15503,7 +20343,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -15521,6 +20366,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15533,6 +20382,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15551,7 +20406,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -15569,6 +20429,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15581,6 +20445,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15599,7 +20469,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -15617,6 +20492,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15629,6 +20508,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15647,7 +20532,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -15665,6 +20555,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15677,6 +20571,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15695,7 +20595,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -15713,6 +20618,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15725,6 +20634,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15743,7 +20658,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -15761,6 +20681,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15773,6 +20697,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15791,7 +20721,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -15809,6 +20744,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15821,6 +20760,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15839,7 +20784,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -15857,6 +20807,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15869,6 +20823,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15887,7 +20847,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -15905,6 +20870,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15917,6 +20886,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15935,7 +20910,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -15953,6 +20933,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -15965,6 +20949,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -15983,7 +20973,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16001,6 +20996,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16013,6 +21012,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16031,7 +21036,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16049,6 +21059,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16061,6 +21075,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16079,7 +21099,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16097,6 +21122,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16109,6 +21138,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16127,7 +21162,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16145,6 +21185,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16157,6 +21201,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16175,7 +21225,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16193,6 +21248,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16205,6 +21264,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16223,7 +21288,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16241,6 +21311,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16253,6 +21327,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16271,7 +21351,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16289,6 +21374,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16301,6 +21390,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16319,7 +21414,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16337,6 +21437,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16349,6 +21453,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16367,7 +21477,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16385,6 +21500,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16397,6 +21516,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16415,7 +21540,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16433,6 +21563,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16445,6 +21579,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16463,7 +21603,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16481,6 +21626,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16493,6 +21642,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16511,7 +21666,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16529,6 +21689,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16541,6 +21705,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16559,7 +21729,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16577,6 +21752,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16589,6 +21768,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16607,7 +21792,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16625,6 +21815,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16637,6 +21831,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16655,7 +21855,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16673,6 +21878,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16685,6 +21894,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16703,7 +21918,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16721,6 +21941,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16733,6 +21957,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16751,7 +21981,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16769,6 +22004,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16781,6 +22020,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16799,7 +22044,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16817,6 +22067,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16829,6 +22083,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16847,7 +22107,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16865,6 +22130,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16877,6 +22146,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16895,7 +22170,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16913,6 +22193,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16925,6 +22209,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16943,7 +22233,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -16961,6 +22256,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -16973,6 +22272,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -16991,7 +22296,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17009,6 +22319,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17021,6 +22335,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17039,7 +22359,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17057,6 +22382,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17069,6 +22398,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17087,7 +22422,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17105,6 +22445,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17117,6 +22461,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17135,7 +22485,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17153,6 +22508,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17165,6 +22524,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17183,7 +22548,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17201,6 +22571,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17213,6 +22587,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17231,7 +22611,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17249,6 +22634,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17261,6 +22650,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17279,7 +22674,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17297,6 +22697,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17309,6 +22713,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17327,7 +22737,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17345,6 +22760,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17357,6 +22776,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17375,7 +22800,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17393,6 +22823,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17405,6 +22839,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17423,7 +22863,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17441,6 +22886,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17453,6 +22902,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17471,7 +22926,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17489,6 +22949,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17501,6 +22965,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17519,7 +22989,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17537,6 +23012,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17549,6 +23028,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17567,7 +23052,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17585,6 +23075,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17597,6 +23091,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17615,7 +23115,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17633,6 +23138,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17645,6 +23154,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17663,7 +23178,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17681,6 +23201,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17693,6 +23217,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17711,7 +23241,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17729,6 +23264,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17741,6 +23280,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17759,7 +23304,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17777,6 +23327,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17789,6 +23343,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17807,7 +23367,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17825,6 +23390,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17837,6 +23406,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17855,7 +23430,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17873,6 +23453,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17885,6 +23469,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17903,7 +23493,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17921,6 +23516,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17933,6 +23532,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17951,7 +23556,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -17969,6 +23579,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -17981,6 +23595,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -17999,7 +23619,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -18017,6 +23642,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -18029,6 +23658,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -18047,7 +23682,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -18065,6 +23705,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -18077,6 +23721,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -18095,7 +23745,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -18113,6 +23768,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -18125,6 +23784,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -18143,7 +23808,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -18161,6 +23831,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -18173,6 +23847,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -18191,7 +23871,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -18209,6 +23894,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -18221,6 +23910,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -18239,7 +23934,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -18257,6 +23957,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -18269,6 +23973,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -18287,7 +23997,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -18305,6 +24020,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -18317,6 +24036,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -18335,7 +24060,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -18353,6 +24083,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -18365,6 +24099,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -18383,7 +24123,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } }, { @@ -18401,6 +24146,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -18413,6 +24162,12 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate Stack" } } ] @@ -18431,7 +24186,12 @@ "analytical method identifier": "678e0414-690d-4082-b7bf-6914b36c998e", "experimental data identifier": "6aee7ab4-31d2-447f-a240-9dca848d7338", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "Admin", + "measurement finished": "2022-11-10 12:14:17", + "protocol name": "foo" + } } } ], @@ -18447,7 +24207,7 @@ "software name": "Kaleido", "software version": "3.0.3067.117", "ASM converter name": "allotropy_revvity_kaleido", - "ASM converter version": "0.1.61" + "ASM converter version": "0.1.105" } } } diff --git a/tests/parsers/revvity_kaleido/testdata/fluorescence/fluorescence_v3.5_pure_csv_format_example.json b/tests/parsers/revvity_kaleido/testdata/fluorescence/fluorescence_v3.5_pure_csv_format_example.json index 055a205824..f6055926ad 100644 --- a/tests/parsers/revvity_kaleido/testdata/fluorescence/fluorescence_v3.5_pure_csv_format_example.json +++ b/tests/parsers/revvity_kaleido/testdata/fluorescence/fluorescence_v3.5_pure_csv_format_example.json @@ -17,6 +17,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -29,6 +33,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -47,7 +57,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -65,6 +80,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -77,6 +96,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -95,7 +120,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -113,6 +143,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -125,6 +159,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -143,7 +183,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -161,6 +206,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -173,6 +222,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -191,7 +246,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -209,6 +269,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -221,6 +285,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -239,7 +309,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -257,6 +332,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -269,6 +348,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -287,7 +372,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -305,6 +395,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -317,6 +411,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -335,7 +435,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -353,6 +458,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -365,6 +474,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -383,7 +498,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -401,6 +521,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -413,6 +537,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -431,7 +561,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -449,6 +584,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -461,6 +600,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -479,7 +624,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -497,6 +647,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -509,6 +663,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -527,7 +687,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -545,6 +710,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -557,6 +726,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -575,7 +750,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -593,6 +773,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -605,6 +789,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -623,7 +813,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -641,6 +836,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -653,6 +852,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -671,7 +876,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -689,6 +899,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -701,6 +915,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -719,7 +939,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -737,6 +962,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -749,6 +978,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -767,7 +1002,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -785,6 +1025,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -797,6 +1041,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -815,7 +1065,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -833,6 +1088,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -845,6 +1104,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -863,7 +1128,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -881,6 +1151,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -893,6 +1167,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -911,7 +1191,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -929,6 +1214,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -941,6 +1230,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -959,7 +1254,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -977,6 +1277,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -989,6 +1293,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1007,7 +1317,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1025,6 +1340,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1037,6 +1356,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1055,7 +1380,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1073,6 +1403,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1085,6 +1419,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1103,7 +1443,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1121,6 +1466,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1133,6 +1482,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1151,7 +1506,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1169,6 +1529,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1181,6 +1545,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1199,7 +1569,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1217,6 +1592,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1229,6 +1608,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1247,7 +1632,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1265,6 +1655,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1277,6 +1671,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1295,7 +1695,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1313,6 +1718,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1325,6 +1734,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1343,7 +1758,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1361,6 +1781,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1373,6 +1797,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1391,7 +1821,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1409,6 +1844,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1421,6 +1860,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1439,7 +1884,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1457,6 +1907,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1469,6 +1923,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1487,7 +1947,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1505,6 +1970,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1517,6 +1986,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1535,7 +2010,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1553,6 +2033,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1565,6 +2049,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1583,7 +2073,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1601,6 +2096,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1613,6 +2112,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1631,7 +2136,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1649,6 +2159,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1661,6 +2175,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1679,7 +2199,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1697,6 +2222,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1709,6 +2238,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1727,7 +2262,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1745,6 +2285,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1757,6 +2301,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1775,7 +2325,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1793,6 +2348,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1805,6 +2364,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1823,7 +2388,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1841,6 +2411,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1853,6 +2427,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1871,7 +2451,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1889,6 +2474,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1901,6 +2490,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1919,7 +2514,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1937,6 +2537,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1949,6 +2553,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1967,7 +2577,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1985,6 +2600,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -1997,6 +2616,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2015,7 +2640,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2033,6 +2663,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2045,6 +2679,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2063,7 +2703,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2081,6 +2726,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2093,6 +2742,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2111,7 +2766,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2129,6 +2789,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2141,6 +2805,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2159,7 +2829,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2177,6 +2852,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2189,6 +2868,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2207,7 +2892,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2225,6 +2915,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2237,6 +2931,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2255,7 +2955,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2273,6 +2978,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2285,6 +2994,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2303,7 +3018,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2321,6 +3041,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2333,6 +3057,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2351,7 +3081,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2369,6 +3104,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2381,6 +3120,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2399,7 +3144,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2417,6 +3167,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2429,6 +3183,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2447,7 +3207,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2465,6 +3230,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2477,6 +3246,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2495,7 +3270,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2513,6 +3293,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2525,6 +3309,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2543,7 +3333,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2561,6 +3356,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2573,6 +3372,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2591,7 +3396,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2609,6 +3419,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2621,6 +3435,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2639,7 +3459,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2657,6 +3482,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2669,6 +3498,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2687,7 +3522,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2705,6 +3545,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2717,6 +3561,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2735,7 +3585,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2753,6 +3608,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2765,6 +3624,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2783,7 +3648,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2801,6 +3671,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2813,6 +3687,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2831,7 +3711,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2849,6 +3734,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2861,6 +3750,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2879,7 +3774,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2897,6 +3797,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2909,6 +3813,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2927,7 +3837,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2945,6 +3860,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -2957,6 +3876,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2975,7 +3900,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2993,6 +3923,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3005,6 +3939,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3023,7 +3963,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3041,6 +3986,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3053,6 +4002,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3071,7 +4026,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3089,6 +4049,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3101,6 +4065,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3119,7 +4089,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3137,6 +4112,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3149,6 +4128,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3167,7 +4152,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3185,6 +4175,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3197,6 +4191,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3215,7 +4215,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3233,6 +4238,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3245,6 +4254,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3263,7 +4278,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3281,6 +4301,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3293,6 +4317,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3311,7 +4341,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3329,6 +4364,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3341,6 +4380,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3359,7 +4404,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3377,6 +4427,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3389,6 +4443,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3407,7 +4467,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3425,6 +4490,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3437,6 +4506,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3455,7 +4530,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3473,6 +4553,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3485,6 +4569,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3503,7 +4593,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3521,6 +4616,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3533,6 +4632,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3551,7 +4656,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3569,6 +4679,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3581,6 +4695,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3599,7 +4719,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3617,6 +4742,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3629,6 +4758,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3647,7 +4782,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3665,6 +4805,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3677,6 +4821,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3695,7 +4845,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3713,6 +4868,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3725,6 +4884,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3743,7 +4908,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3761,6 +4931,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3773,6 +4947,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3791,7 +4971,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3809,6 +4994,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3821,6 +5010,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3839,7 +5034,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3857,6 +5057,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3869,6 +5073,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3887,7 +5097,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3905,6 +5120,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3917,6 +5136,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3935,7 +5160,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3953,6 +5183,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -3965,6 +5199,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3983,7 +5223,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -4001,6 +5246,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4013,6 +5262,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -4031,7 +5286,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -4049,6 +5309,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4061,6 +5325,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -4079,7 +5349,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -4097,6 +5372,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4109,6 +5388,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -4127,7 +5412,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -4145,6 +5435,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4157,6 +5451,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -4175,7 +5475,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -4193,6 +5498,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4205,6 +5514,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -4223,7 +5538,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -4241,6 +5561,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4253,6 +5577,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -4271,7 +5601,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -4289,6 +5624,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4301,6 +5640,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -4319,7 +5664,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -4337,6 +5687,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4349,6 +5703,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -4367,7 +5727,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -4385,6 +5750,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4397,6 +5766,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -4415,7 +5790,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -4433,6 +5813,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4445,6 +5829,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -4463,7 +5853,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -4481,6 +5876,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4493,6 +5892,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -4511,7 +5916,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -4529,6 +5939,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4541,6 +5955,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -4559,7 +5979,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -4577,6 +6002,10 @@ { "device type": "fluorescence detector", "detection type": "fluorescence", + "detector distance setting (plate reader)": { + "value": 9.5, + "unit": "mm" + }, "number of averages": { "value": 100.0, "unit": "#" @@ -4589,6 +6018,12 @@ "excitation wavelength setting": { "value": 550.0, "unit": "nm" + }, + "custom information document": { + "number of flashes integrated": 1.0, + "flash power": 100.0, + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -4607,7 +6042,12 @@ "analytical method identifier": "PROTOCOL 1 UUID", "experimental data identifier": "MEASUREMENT UUID", "experiment type": "Fluorescence intensity", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "thomasjm", + "measurement finished": "10/8/2024 12:11", + "protocol name": "EXAMPLE PROTOCOL 1" + } } } ], @@ -4623,7 +6063,7 @@ "software name": "Kaleido", "software version": "3.5.3082.227", "ASM converter name": "allotropy_revvity_kaleido", - "ASM converter version": "0.1.61" + "ASM converter version": "0.1.105" } } } diff --git a/tests/parsers/revvity_kaleido/testdata/luminescence/luminescence_endpoint_single_plate_example_01.json b/tests/parsers/revvity_kaleido/testdata/luminescence/luminescence_endpoint_single_plate_example_01.json index c4ec9ecd68..c5578ed064 100644 --- a/tests/parsers/revvity_kaleido/testdata/luminescence/luminescence_endpoint_single_plate_example_01.json +++ b/tests/parsers/revvity_kaleido/testdata/luminescence/luminescence_endpoint_single_plate_example_01.json @@ -20,6 +20,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -32,13 +36,23 @@ "luminescence": { "value": 94395.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -59,6 +73,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -71,13 +89,23 @@ "luminescence": { "value": 87450.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -98,6 +126,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -110,13 +142,23 @@ "luminescence": { "value": 81740.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -137,6 +179,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -149,13 +195,23 @@ "luminescence": { "value": 50.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -176,6 +232,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -188,13 +248,23 @@ "luminescence": { "value": 10.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -215,6 +285,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -227,13 +301,23 @@ "luminescence": { "value": 85.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -254,6 +338,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -266,13 +354,23 @@ "luminescence": { "value": 72485.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -293,6 +391,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -305,13 +407,23 @@ "luminescence": { "value": 57060.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -332,6 +444,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -344,13 +460,23 @@ "luminescence": { "value": 45800.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -371,6 +497,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -383,13 +513,23 @@ "luminescence": { "value": 20.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -410,6 +550,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -422,13 +566,23 @@ "luminescence": { "value": 50.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -449,6 +603,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -461,13 +619,23 @@ "luminescence": { "value": 75.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -488,6 +656,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -500,13 +672,23 @@ "luminescence": { "value": 102790.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -527,6 +709,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -539,13 +725,23 @@ "luminescence": { "value": 91465.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -566,6 +762,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -578,13 +778,23 @@ "luminescence": { "value": 85565.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -605,6 +815,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -617,13 +831,23 @@ "luminescence": { "value": 55.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -644,6 +868,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -656,13 +884,23 @@ "luminescence": { "value": 65.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -683,6 +921,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -695,13 +937,23 @@ "luminescence": { "value": 50.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -722,6 +974,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -734,13 +990,23 @@ "luminescence": { "value": 66550.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -761,6 +1027,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -773,13 +1043,23 @@ "luminescence": { "value": 51120.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -800,6 +1080,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -812,13 +1096,23 @@ "luminescence": { "value": 37175.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -839,6 +1133,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -851,13 +1149,23 @@ "luminescence": { "value": 55.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -878,6 +1186,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -890,13 +1202,23 @@ "luminescence": { "value": 90.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -917,6 +1239,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -929,13 +1255,23 @@ "luminescence": { "value": 40.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -956,6 +1292,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -968,13 +1308,23 @@ "luminescence": { "value": 95030.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -995,6 +1345,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1007,13 +1361,23 @@ "luminescence": { "value": 86670.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1034,6 +1398,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1046,13 +1414,23 @@ "luminescence": { "value": 81190.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1073,6 +1451,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1085,13 +1467,23 @@ "luminescence": { "value": 40.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1112,6 +1504,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1124,13 +1520,23 @@ "luminescence": { "value": 45.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1151,6 +1557,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1163,13 +1573,23 @@ "luminescence": { "value": 10.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1190,6 +1610,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1202,13 +1626,23 @@ "luminescence": { "value": 57750.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1229,6 +1663,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1241,13 +1679,23 @@ "luminescence": { "value": 41340.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1268,6 +1716,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1280,13 +1732,23 @@ "luminescence": { "value": 28510.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1307,6 +1769,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1319,13 +1785,23 @@ "luminescence": { "value": 65.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1346,6 +1822,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1358,13 +1838,23 @@ "luminescence": { "value": 40.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1385,6 +1875,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1397,13 +1891,23 @@ "luminescence": { "value": 70.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1424,6 +1928,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1436,13 +1944,23 @@ "luminescence": { "value": 94215.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1463,6 +1981,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1475,13 +1997,23 @@ "luminescence": { "value": 81820.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1502,6 +2034,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1514,13 +2050,23 @@ "luminescence": { "value": 68560.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1541,6 +2087,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1553,13 +2103,23 @@ "luminescence": { "value": 45.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1580,6 +2140,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1592,13 +2156,23 @@ "luminescence": { "value": 55.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1619,6 +2193,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1631,13 +2209,23 @@ "luminescence": { "value": 50.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1658,6 +2246,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1670,13 +2262,23 @@ "luminescence": { "value": 40310.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1697,6 +2299,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1709,13 +2315,23 @@ "luminescence": { "value": 26715.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1736,6 +2352,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1748,13 +2368,23 @@ "luminescence": { "value": 16315.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1775,6 +2405,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1787,13 +2421,23 @@ "luminescence": { "value": 30.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1814,6 +2458,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1826,13 +2474,23 @@ "luminescence": { "value": 50.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1853,6 +2511,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1865,13 +2527,23 @@ "luminescence": { "value": 35.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1892,6 +2564,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1904,13 +2580,23 @@ "luminescence": { "value": 70685.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1931,6 +2617,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1943,13 +2633,23 @@ "luminescence": { "value": 63700.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -1970,6 +2670,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1982,13 +2686,23 @@ "luminescence": { "value": 60960.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2009,6 +2723,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2021,13 +2739,23 @@ "luminescence": { "value": 50.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2048,6 +2776,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2060,13 +2792,23 @@ "luminescence": { "value": 55.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2087,6 +2829,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2099,13 +2845,23 @@ "luminescence": { "value": 55.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2126,6 +2882,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2138,13 +2898,23 @@ "luminescence": { "value": 21010.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2165,6 +2935,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2177,13 +2951,23 @@ "luminescence": { "value": 14400.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2204,6 +2988,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2216,13 +3004,23 @@ "luminescence": { "value": 9810.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2243,6 +3041,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2255,13 +3057,23 @@ "luminescence": { "value": 75.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2282,6 +3094,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2294,13 +3110,23 @@ "luminescence": { "value": 45.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2321,6 +3147,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2333,13 +3163,23 @@ "luminescence": { "value": 45.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2360,6 +3200,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2372,13 +3216,23 @@ "luminescence": { "value": 40015.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2399,6 +3253,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2411,13 +3269,23 @@ "luminescence": { "value": 36955.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2438,6 +3306,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2450,13 +3322,23 @@ "luminescence": { "value": 32090.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2477,6 +3359,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2489,13 +3375,23 @@ "luminescence": { "value": 70.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2516,6 +3412,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2528,13 +3428,23 @@ "luminescence": { "value": 65.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2555,6 +3465,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2567,13 +3481,23 @@ "luminescence": { "value": 35.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2594,6 +3518,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2606,13 +3534,23 @@ "luminescence": { "value": 13045.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2633,6 +3571,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2645,13 +3587,23 @@ "luminescence": { "value": 5680.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2672,6 +3624,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2684,13 +3640,23 @@ "luminescence": { "value": 3285.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2711,6 +3677,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2723,13 +3693,23 @@ "luminescence": { "value": 45.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2750,6 +3730,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2762,13 +3746,23 @@ "luminescence": { "value": 60.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2789,6 +3783,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2801,13 +3799,23 @@ "luminescence": { "value": 55.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2828,6 +3836,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2840,13 +3852,23 @@ "luminescence": { "value": 12460.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2867,6 +3889,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2879,13 +3905,23 @@ "luminescence": { "value": 13055.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2906,6 +3942,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2918,13 +3958,23 @@ "luminescence": { "value": 11655.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2945,6 +3995,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2957,13 +4011,23 @@ "luminescence": { "value": 65.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -2984,6 +4048,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2996,13 +4064,23 @@ "luminescence": { "value": 30.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -3023,6 +4101,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3035,13 +4117,23 @@ "luminescence": { "value": 35.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -3062,6 +4154,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3074,13 +4170,23 @@ "luminescence": { "value": 3145.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -3101,6 +4207,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3113,13 +4223,23 @@ "luminescence": { "value": 1620.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -3140,6 +4260,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3152,13 +4276,23 @@ "luminescence": { "value": 825.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -3179,6 +4313,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3191,13 +4329,23 @@ "luminescence": { "value": 65.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -3218,6 +4366,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3230,13 +4382,23 @@ "luminescence": { "value": 85.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -3257,6 +4419,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3269,13 +4435,23 @@ "luminescence": { "value": 55.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -3296,6 +4472,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3308,13 +4488,23 @@ "luminescence": { "value": 3065.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -3335,6 +4525,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3347,13 +4541,23 @@ "luminescence": { "value": 2875.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -3374,6 +4578,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3386,13 +4594,23 @@ "luminescence": { "value": 2920.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -3413,6 +4631,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3425,13 +4647,23 @@ "luminescence": { "value": 80.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -3452,6 +4684,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3464,13 +4700,23 @@ "luminescence": { "value": 95.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -3491,6 +4737,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3503,13 +4753,23 @@ "luminescence": { "value": 65.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -3530,6 +4790,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3542,13 +4806,23 @@ "luminescence": { "value": 720.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -3569,6 +4843,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3581,13 +4859,23 @@ "luminescence": { "value": 375.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -3608,6 +4896,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3620,13 +4912,23 @@ "luminescence": { "value": 275.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -3647,6 +4949,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3659,13 +4965,23 @@ "luminescence": { "value": 40.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -3686,6 +5002,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3698,13 +5018,23 @@ "luminescence": { "value": 35.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } }, { @@ -3725,6 +5055,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3737,13 +5071,23 @@ "luminescence": { "value": 75.0, "unit": "RLU" + }, + "custom information document": { + "plate location": "INSIDE", + "duration [hh:ss:mm.sss]": "00:00:10.000", + "measurement time [s]": 0.2 } } ], "analytical method identifier": "ee5bd9fd-5d6f-491d-8791-d01ba03222bc", "experimental data identifier": "2f305f44-3d4d-42b4-bbbf-f0de3de98057", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "bar", + "measurement finished": "2023-05-17 16:22:38", + "protocol name": "foo" + } } } ], @@ -3759,7 +5103,7 @@ "software name": "Kaleido", "software version": "3.0.3067.117", "ASM converter name": "allotropy_revvity_kaleido", - "ASM converter version": "0.1.61" + "ASM converter version": "0.1.105" } } } diff --git a/tests/parsers/revvity_kaleido/testdata/luminescence/luminescence_v3.5_pure_csv_format_example.json b/tests/parsers/revvity_kaleido/testdata/luminescence/luminescence_v3.5_pure_csv_format_example.json index ffa476e29f..f71109d8ad 100644 --- a/tests/parsers/revvity_kaleido/testdata/luminescence/luminescence_v3.5_pure_csv_format_example.json +++ b/tests/parsers/revvity_kaleido/testdata/luminescence/luminescence_v3.5_pure_csv_format_example.json @@ -20,6 +20,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -32,13 +36,21 @@ "luminescence": { "value": 3330.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -59,6 +71,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -71,13 +87,21 @@ "luminescence": { "value": 2830.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -98,6 +122,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -110,13 +138,21 @@ "luminescence": { "value": 2920.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -137,6 +173,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -149,13 +189,21 @@ "luminescence": { "value": 3330.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -176,6 +224,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -188,13 +240,21 @@ "luminescence": { "value": 2950.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -215,6 +275,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -227,13 +291,21 @@ "luminescence": { "value": 2860.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -254,6 +326,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -266,13 +342,21 @@ "luminescence": { "value": 3380.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -293,6 +377,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -305,13 +393,21 @@ "luminescence": { "value": 2800.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -332,6 +428,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -344,13 +444,21 @@ "luminescence": { "value": 2630.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -371,6 +479,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -383,13 +495,21 @@ "luminescence": { "value": 2990.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -410,6 +530,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -422,13 +546,21 @@ "luminescence": { "value": 2930.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -449,6 +581,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -461,13 +597,21 @@ "luminescence": { "value": 3510.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -488,6 +632,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -500,13 +648,21 @@ "luminescence": { "value": 3020.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -527,6 +683,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -539,13 +699,21 @@ "luminescence": { "value": 218540.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -566,6 +734,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -578,13 +750,21 @@ "luminescence": { "value": 3250.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -605,6 +785,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -617,13 +801,21 @@ "luminescence": { "value": 197470.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -644,6 +836,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -656,13 +852,21 @@ "luminescence": { "value": 2880.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -683,6 +887,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -695,13 +903,21 @@ "luminescence": { "value": 172430.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -722,6 +938,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -734,13 +954,21 @@ "luminescence": { "value": 2900.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -761,6 +989,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -773,13 +1005,21 @@ "luminescence": { "value": 170130.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -800,6 +1040,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -812,13 +1056,21 @@ "luminescence": { "value": 2660.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -839,6 +1091,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -851,13 +1107,21 @@ "luminescence": { "value": 261580.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -878,6 +1142,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -890,13 +1158,21 @@ "luminescence": { "value": 2820.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -917,6 +1193,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -929,13 +1209,21 @@ "luminescence": { "value": 2650.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -956,6 +1244,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -968,13 +1260,21 @@ "luminescence": { "value": 2820.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -995,6 +1295,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1007,13 +1311,21 @@ "luminescence": { "value": 213790.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1034,6 +1346,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1046,13 +1362,21 @@ "luminescence": { "value": 2830.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1073,6 +1397,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1085,13 +1413,21 @@ "luminescence": { "value": 269460.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1112,6 +1448,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1124,13 +1464,21 @@ "luminescence": { "value": 6720.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1151,6 +1499,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1163,13 +1515,21 @@ "luminescence": { "value": 201850.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1190,6 +1550,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1202,13 +1566,21 @@ "luminescence": { "value": 4390.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1229,6 +1601,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1241,13 +1617,21 @@ "luminescence": { "value": 236470.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1268,6 +1652,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1280,13 +1668,21 @@ "luminescence": { "value": 3460.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1307,6 +1703,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1319,13 +1719,21 @@ "luminescence": { "value": 211460.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1346,6 +1754,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1358,13 +1770,21 @@ "luminescence": { "value": 2800.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1385,6 +1805,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1397,13 +1821,21 @@ "luminescence": { "value": 2410.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1424,6 +1856,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1436,13 +1872,21 @@ "luminescence": { "value": 3540.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1463,6 +1907,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1475,13 +1923,21 @@ "luminescence": { "value": 255970.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1502,6 +1958,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1514,13 +1974,21 @@ "luminescence": { "value": 3630.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1541,6 +2009,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1553,13 +2025,21 @@ "luminescence": { "value": 322290.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1580,6 +2060,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1592,13 +2076,21 @@ "luminescence": { "value": 3420.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1619,6 +2111,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1631,13 +2127,21 @@ "luminescence": { "value": 211790.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1658,6 +2162,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1670,13 +2178,21 @@ "luminescence": { "value": 3750.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1697,6 +2213,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1709,13 +2229,21 @@ "luminescence": { "value": 273740.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1736,6 +2264,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1748,13 +2280,21 @@ "luminescence": { "value": 2460.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1775,6 +2315,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1787,13 +2331,21 @@ "luminescence": { "value": 241270.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1814,6 +2366,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1826,13 +2382,21 @@ "luminescence": { "value": 1490.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1853,6 +2417,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1865,13 +2433,21 @@ "luminescence": { "value": 1880.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1892,6 +2468,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1904,13 +2484,21 @@ "luminescence": { "value": 2890.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1931,6 +2519,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1943,13 +2535,21 @@ "luminescence": { "value": 309020.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -1970,6 +2570,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -1982,13 +2586,21 @@ "luminescence": { "value": 3020.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2009,6 +2621,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2021,13 +2637,21 @@ "luminescence": { "value": 374560.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2048,6 +2672,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2060,13 +2688,21 @@ "luminescence": { "value": 6840.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2087,6 +2723,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2099,13 +2739,21 @@ "luminescence": { "value": 228560.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2126,6 +2774,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2138,13 +2790,21 @@ "luminescence": { "value": 6740.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2165,6 +2825,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2177,13 +2841,21 @@ "luminescence": { "value": 271290.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2204,6 +2876,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2216,13 +2892,21 @@ "luminescence": { "value": 6070.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2243,6 +2927,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2255,13 +2943,21 @@ "luminescence": { "value": 211600.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2282,6 +2978,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2294,13 +2994,21 @@ "luminescence": { "value": 6840.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2321,6 +3029,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2333,13 +3045,21 @@ "luminescence": { "value": 5430.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2360,6 +3080,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2372,13 +3096,21 @@ "luminescence": { "value": 10030.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2399,6 +3131,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2411,13 +3147,21 @@ "luminescence": { "value": 325560.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2438,6 +3182,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2450,13 +3198,21 @@ "luminescence": { "value": 11730.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2477,6 +3233,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2489,13 +3249,21 @@ "luminescence": { "value": 326460.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2516,6 +3284,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2528,13 +3300,21 @@ "luminescence": { "value": 12010.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2555,6 +3335,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2567,13 +3351,21 @@ "luminescence": { "value": 298280.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2594,6 +3386,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2606,13 +3402,21 @@ "luminescence": { "value": 10560.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2633,6 +3437,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2645,13 +3453,21 @@ "luminescence": { "value": 315940.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2672,6 +3488,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2684,13 +3504,21 @@ "luminescence": { "value": 5480.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2711,6 +3539,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2723,13 +3555,21 @@ "luminescence": { "value": 198810.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2750,6 +3590,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2762,13 +3606,21 @@ "luminescence": { "value": 2010.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2789,6 +3641,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2801,13 +3657,21 @@ "luminescence": { "value": 2440.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2828,6 +3692,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2840,13 +3708,21 @@ "luminescence": { "value": 3390.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2867,6 +3743,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2879,13 +3759,21 @@ "luminescence": { "value": 343520.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2906,6 +3794,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2918,13 +3810,21 @@ "luminescence": { "value": 3400.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2945,6 +3845,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2957,13 +3861,21 @@ "luminescence": { "value": 339770.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -2984,6 +3896,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -2996,13 +3912,21 @@ "luminescence": { "value": 3130.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3023,6 +3947,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3035,13 +3963,21 @@ "luminescence": { "value": 355030.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3062,6 +3998,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3074,13 +4014,21 @@ "luminescence": { "value": 3650.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3101,6 +4049,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3113,13 +4065,21 @@ "luminescence": { "value": 357670.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3140,6 +4100,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3152,13 +4116,21 @@ "luminescence": { "value": 3750.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3179,6 +4151,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3191,13 +4167,21 @@ "luminescence": { "value": 195330.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3218,6 +4202,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3230,13 +4218,21 @@ "luminescence": { "value": 4880.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3257,6 +4253,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3269,13 +4269,21 @@ "luminescence": { "value": 3730.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3296,6 +4304,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3308,13 +4320,21 @@ "luminescence": { "value": 1510.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3335,6 +4355,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3347,13 +4371,21 @@ "luminescence": { "value": 1290.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3374,6 +4406,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3386,13 +4422,21 @@ "luminescence": { "value": 1570.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3413,6 +4457,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3425,13 +4473,21 @@ "luminescence": { "value": 1650.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3452,6 +4508,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3464,13 +4524,21 @@ "luminescence": { "value": 1870.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3491,6 +4559,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3503,13 +4575,21 @@ "luminescence": { "value": 1920.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3530,6 +4610,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3542,13 +4626,21 @@ "luminescence": { "value": 2010.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3569,6 +4661,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3581,13 +4677,21 @@ "luminescence": { "value": 1870.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3608,6 +4712,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3620,13 +4728,21 @@ "luminescence": { "value": 1650.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3647,6 +4763,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3659,13 +4779,21 @@ "luminescence": { "value": 1920.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3686,6 +4814,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3698,13 +4830,21 @@ "luminescence": { "value": 2200.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } }, { @@ -3725,6 +4865,10 @@ "detector distance setting (plate reader)": { "value": 0.1, "unit": "mm" + }, + "custom information document": { + "measurement mode setting": "Single", + "sequence executed by": "Plate" } } ] @@ -3737,13 +4881,21 @@ "luminescence": { "value": 2460.0, "unit": "RLU" + }, + "custom information document": { + "measurement time [s]": 0.1 } } ], "analytical method identifier": "PROTOCOL UUID", "experimental data identifier": "SIGNATURE_UUID", "experiment type": "Luminescence", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "protocol owner": "PROTOCOL OWNER 1", + "measurement finished": "10/16/2024 13:39", + "protocol name": "EXAMPLE PROTOCOL 1" + } } } ], @@ -3759,7 +4911,7 @@ "software name": "Kaleido", "software version": "3.5.3082.227", "ASM converter name": "allotropy_revvity_kaleido", - "ASM converter version": "0.1.61" + "ASM converter version": "0.1.105" } } } diff --git a/tests/parsers/revvity_kaleido/testdata/optical_imaging/optical_imaging_endpoint_single_plate_example_01.json b/tests/parsers/revvity_kaleido/testdata/optical_imaging/optical_imaging_endpoint_single_plate_example_01.json index 0ad1ef8b05..05717c22e4 100644 --- a/tests/parsers/revvity_kaleido/testdata/optical_imaging/optical_imaging_endpoint_single_plate_example_01.json +++ b/tests/parsers/revvity_kaleido/testdata/optical_imaging/optical_imaging_endpoint_single_plate_example_01.json @@ -37,7 +37,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -74,7 +80,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -185,6 +200,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -223,7 +243,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -260,7 +286,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -371,6 +406,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -409,7 +449,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -446,7 +492,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -557,6 +612,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -595,7 +655,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -632,7 +698,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -743,6 +818,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -781,7 +861,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -818,7 +904,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -929,6 +1024,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -967,7 +1067,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1004,7 +1110,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1115,6 +1230,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -1153,7 +1273,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1190,7 +1316,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1301,6 +1436,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -1339,7 +1479,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1376,7 +1522,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1487,6 +1642,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -1525,7 +1685,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1562,7 +1728,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1673,6 +1848,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -1711,7 +1891,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1748,7 +1934,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1859,6 +2054,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -1897,7 +2097,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1934,7 +2140,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2045,6 +2260,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -2083,7 +2303,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2120,7 +2346,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2231,6 +2466,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -2269,7 +2509,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2306,7 +2552,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2417,6 +2672,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -2455,7 +2715,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2492,7 +2758,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2603,6 +2878,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -2641,7 +2921,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2678,7 +2964,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2789,6 +3084,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -2827,7 +3127,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2864,7 +3170,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2975,6 +3290,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -3013,7 +3333,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3050,7 +3376,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3161,6 +3496,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -3199,7 +3539,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3236,7 +3582,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3347,6 +3702,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -3385,7 +3745,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3422,7 +3788,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3533,6 +3908,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -3571,7 +3951,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3608,7 +3994,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3719,6 +4114,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -3757,7 +4157,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3794,7 +4200,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3905,6 +4320,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -3943,7 +4363,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3980,7 +4406,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4091,6 +4526,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -4129,7 +4569,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4166,7 +4612,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4277,6 +4732,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -4315,7 +4775,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4352,7 +4818,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4463,6 +4938,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -4501,7 +4981,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4538,7 +5024,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4649,6 +5144,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -4687,7 +5187,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4724,7 +5230,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4835,6 +5350,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -4873,7 +5393,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4910,7 +5436,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5021,6 +5556,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -5059,7 +5599,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5096,7 +5642,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5207,6 +5762,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -5245,7 +5805,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5282,7 +5848,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5393,6 +5968,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -5431,7 +6011,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5468,7 +6054,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5579,6 +6174,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -5617,7 +6217,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5654,7 +6260,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5765,6 +6380,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -5803,7 +6423,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5840,7 +6466,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5951,6 +6586,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -5989,7 +6629,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6026,7 +6672,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6137,6 +6792,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -6175,7 +6835,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6212,7 +6878,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6323,6 +6998,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -6361,7 +7041,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6398,7 +7084,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6509,6 +7204,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -6547,7 +7247,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6584,7 +7290,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6695,6 +7410,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -6733,7 +7453,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6770,7 +7496,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6881,6 +7616,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -6919,7 +7659,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6956,7 +7702,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7067,6 +7822,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -7105,7 +7865,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7142,7 +7908,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7253,6 +8028,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -7291,7 +8071,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7328,7 +8114,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7439,6 +8234,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -7477,7 +8277,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7514,7 +8320,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7625,6 +8440,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -7663,7 +8483,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7700,7 +8526,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7811,6 +8646,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -7849,7 +8689,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7886,7 +8732,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7997,6 +8852,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -8035,7 +8895,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8072,7 +8938,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8183,6 +9058,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -8221,7 +9101,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8258,7 +9144,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8369,6 +9264,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -8407,7 +9307,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8444,7 +9350,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8555,6 +9470,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -8593,7 +9513,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8630,7 +9556,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8741,6 +9676,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -8779,7 +9719,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8816,7 +9762,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8927,6 +9882,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -8965,7 +9925,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9002,7 +9968,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9113,6 +10088,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -9151,7 +10131,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9188,7 +10174,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9299,6 +10294,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -9337,7 +10337,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9374,7 +10380,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9485,6 +10500,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -9523,7 +10543,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9560,7 +10586,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9671,6 +10706,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -9709,7 +10749,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9746,7 +10792,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9857,6 +10912,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -9895,7 +10955,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9932,7 +10998,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10043,6 +11118,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -10081,7 +11161,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10118,7 +11204,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10229,6 +11324,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -10267,7 +11367,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10304,7 +11410,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10415,6 +11530,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -10453,7 +11573,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10490,7 +11616,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10601,6 +11736,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -10639,7 +11779,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10676,7 +11822,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10787,6 +11942,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -10825,7 +11985,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10862,7 +12028,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10973,6 +12148,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -11011,7 +12191,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11048,7 +12234,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11159,6 +12354,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -11197,7 +12397,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11234,7 +12440,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11345,6 +12560,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -11383,7 +12603,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11420,7 +12646,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11531,6 +12766,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -11569,7 +12809,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11606,7 +12852,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11717,6 +12972,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -11755,7 +13015,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11792,7 +13058,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11903,6 +13178,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -11941,7 +13221,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11978,7 +13264,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12089,6 +13384,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -12127,7 +13427,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12164,7 +13470,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12275,6 +13590,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -12313,7 +13633,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12350,7 +13676,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12461,6 +13796,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -12499,7 +13839,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12536,7 +13882,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12647,6 +14002,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -12685,7 +14045,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12722,7 +14088,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12833,6 +14208,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -12871,7 +14251,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12908,7 +14294,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13019,6 +14414,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -13057,7 +14457,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13094,7 +14500,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13205,6 +14620,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -13243,7 +14663,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13280,7 +14706,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13391,6 +14826,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -13429,7 +14869,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13466,7 +14912,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13577,6 +15032,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -13615,7 +15075,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13652,7 +15118,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13763,6 +15238,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -13801,7 +15281,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13838,7 +15324,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13949,6 +15444,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -13987,7 +15487,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14024,7 +15530,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14135,6 +15650,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -14173,7 +15693,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14210,7 +15736,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14321,6 +15856,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -14359,7 +15899,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14396,7 +15942,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14507,6 +16062,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -14545,7 +16105,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14582,7 +16148,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14693,6 +16268,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -14731,7 +16311,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14768,7 +16354,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14879,6 +16474,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -14917,7 +16517,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14954,7 +16560,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15065,6 +16680,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -15103,7 +16723,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15140,7 +16766,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15251,6 +16886,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -15289,7 +16929,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15326,7 +16972,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15437,6 +17092,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -15475,7 +17135,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15512,7 +17178,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15623,6 +17298,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -15661,7 +17341,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15698,7 +17384,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15809,6 +17504,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -15847,7 +17547,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15884,7 +17590,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15995,6 +17710,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -16033,7 +17753,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16070,7 +17796,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16181,6 +17916,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -16219,7 +17959,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16256,7 +18002,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16367,6 +18122,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -16405,7 +18165,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16442,7 +18208,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16553,6 +18328,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -16591,7 +18371,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16628,7 +18414,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16739,6 +18534,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -16777,7 +18577,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16814,7 +18620,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16925,6 +18740,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -16963,7 +18783,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17000,7 +18826,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17111,6 +18946,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -17149,7 +18989,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17186,7 +19032,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17297,6 +19152,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -17335,7 +19195,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17372,7 +19238,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17483,6 +19358,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -17521,7 +19401,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17558,7 +19444,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17669,6 +19564,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -17707,7 +19607,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17744,7 +19650,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17855,6 +19770,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -17893,7 +19813,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17930,7 +19856,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18041,6 +19976,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -18079,7 +20019,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18116,7 +20062,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18227,6 +20182,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -18265,7 +20225,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18302,7 +20268,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18413,6 +20388,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -18451,7 +20431,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18488,7 +20474,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18599,6 +20594,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -18637,7 +20637,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18674,7 +20680,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18785,6 +20800,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -18823,7 +20843,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18860,7 +20886,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18971,6 +21006,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -19009,7 +21049,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19046,7 +21092,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19157,6 +21212,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -19195,7 +21255,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19232,7 +21298,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19343,6 +21418,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -19381,7 +21461,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19418,7 +21504,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19529,6 +21624,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -19567,7 +21667,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19604,7 +21710,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19715,6 +21830,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -19753,7 +21873,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19790,7 +21916,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19901,6 +22036,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -19939,7 +22079,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19976,7 +22122,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20087,6 +22242,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -20125,7 +22285,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20162,7 +22328,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20273,6 +22448,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -20311,7 +22491,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20348,7 +22534,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20459,6 +22654,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -20497,7 +22697,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20534,7 +22740,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20645,6 +22860,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -20683,7 +22903,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20720,7 +22946,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20831,6 +23066,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -20869,7 +23109,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20906,7 +23152,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21017,6 +23272,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -21055,7 +23315,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21092,7 +23358,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21203,6 +23478,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -21241,7 +23521,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21278,7 +23564,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21389,6 +23684,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -21427,7 +23727,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21464,7 +23770,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21575,6 +23890,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -21613,7 +23933,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21650,7 +23976,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21761,6 +24096,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -21799,7 +24139,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21836,7 +24182,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21947,6 +24302,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -21985,7 +24345,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22022,7 +24388,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22133,6 +24508,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -22171,7 +24551,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22208,7 +24594,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22319,6 +24714,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -22357,7 +24757,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22394,7 +24800,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22505,6 +24920,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -22543,7 +24963,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22580,7 +25006,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22691,6 +25126,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -22729,7 +25169,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22766,7 +25212,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22877,6 +25332,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -22915,7 +25375,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22952,7 +25418,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23063,6 +25538,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -23101,7 +25581,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23138,7 +25624,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23249,6 +25744,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -23287,7 +25787,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23324,7 +25830,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23435,6 +25950,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -23473,7 +25993,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23510,7 +26036,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23621,6 +26156,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -23659,7 +26199,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23696,7 +26242,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23807,6 +26362,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -23845,7 +26405,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23882,7 +26448,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23993,6 +26568,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -24031,7 +26611,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24068,7 +26654,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24179,6 +26774,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -24217,7 +26817,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24254,7 +26860,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24365,6 +26980,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -24403,7 +27023,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24440,7 +27066,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24551,6 +27186,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -24589,7 +27229,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24626,7 +27272,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24737,6 +27392,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -24775,7 +27435,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24812,7 +27478,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24923,6 +27598,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -24961,7 +27641,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24998,7 +27684,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25109,6 +27804,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -25147,7 +27847,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25184,7 +27890,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25295,6 +28010,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -25333,7 +28053,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25370,7 +28096,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25481,6 +28216,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -25519,7 +28259,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25556,7 +28302,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25667,6 +28422,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -25705,7 +28465,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25742,7 +28508,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25853,6 +28628,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -25891,7 +28671,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25928,7 +28714,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26039,6 +28834,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -26077,7 +28877,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26114,7 +28920,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26225,6 +29040,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -26263,7 +29083,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26300,7 +29126,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26411,6 +29246,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -26449,7 +29289,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26486,7 +29332,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26597,6 +29452,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -26635,7 +29495,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26672,7 +29538,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26783,6 +29658,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -26821,7 +29701,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26858,7 +29744,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26969,6 +29864,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -27007,7 +29907,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27044,7 +29950,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27155,6 +30070,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -27193,7 +30113,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27230,7 +30156,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27341,6 +30276,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -27379,7 +30319,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27416,7 +30362,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27527,6 +30482,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -27565,7 +30525,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27602,7 +30568,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27713,6 +30688,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -27751,7 +30731,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27788,7 +30774,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27899,6 +30894,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -27937,7 +30937,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27974,7 +30980,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28085,6 +31100,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -28123,7 +31143,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28160,7 +31186,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28271,6 +31306,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -28309,7 +31349,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28346,7 +31392,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28457,6 +31512,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -28495,7 +31555,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28532,7 +31598,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28643,6 +31718,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -28681,7 +31761,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28718,7 +31804,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28829,6 +31924,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -28867,7 +31967,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28904,7 +32010,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29015,6 +32130,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -29053,7 +32173,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29090,7 +32216,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29201,6 +32336,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -29239,7 +32379,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29276,7 +32422,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29387,6 +32542,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -29425,7 +32585,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29462,7 +32628,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29573,6 +32748,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -29611,7 +32791,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29648,7 +32834,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29759,6 +32954,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -29797,7 +32997,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29834,7 +33040,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29945,6 +33160,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -29983,7 +33203,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30020,7 +33246,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30131,6 +33366,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -30169,7 +33409,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30206,7 +33452,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30317,6 +33572,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -30355,7 +33615,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30392,7 +33658,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30503,6 +33778,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -30541,7 +33821,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30578,7 +33864,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30689,6 +33984,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -30727,7 +34027,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30764,7 +34070,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30875,6 +34190,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -30913,7 +34233,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30950,7 +34276,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31061,6 +34396,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -31099,7 +34439,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31136,7 +34482,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31247,6 +34602,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -31285,7 +34645,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31322,7 +34688,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31433,6 +34808,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -31471,7 +34851,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31508,7 +34894,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31619,6 +35014,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -31657,7 +35057,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31694,7 +35100,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31805,6 +35220,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -31843,7 +35263,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31880,7 +35306,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31991,6 +35426,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -32029,7 +35469,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32066,7 +35512,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32177,6 +35632,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -32215,7 +35675,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32252,7 +35718,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32363,6 +35838,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -32401,7 +35881,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32438,7 +35924,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32549,6 +36044,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -32587,7 +36087,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32624,7 +36130,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32735,6 +36250,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -32773,7 +36293,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32810,7 +36336,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32921,6 +36456,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -32959,7 +36499,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32996,7 +36542,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33107,6 +36662,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -33145,7 +36705,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33182,7 +36748,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33293,6 +36868,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -33331,7 +36911,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33368,7 +36954,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33479,6 +37074,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -33517,7 +37117,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33554,7 +37160,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33665,6 +37280,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -33703,7 +37323,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33740,7 +37366,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33851,6 +37486,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -33889,7 +37529,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33926,7 +37572,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34037,6 +37692,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -34075,7 +37735,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34112,7 +37778,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34223,6 +37898,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -34261,7 +37941,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34298,7 +37984,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34409,6 +38104,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -34447,7 +38147,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34484,7 +38190,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34595,6 +38310,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -34633,7 +38353,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34670,7 +38396,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34781,6 +38516,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -34819,7 +38559,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34856,7 +38602,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34967,6 +38722,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -35005,7 +38765,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35042,7 +38808,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35153,6 +38928,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -35191,7 +38971,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35228,7 +39014,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35339,6 +39134,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -35377,7 +39177,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35414,7 +39220,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35525,6 +39340,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -35563,7 +39383,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35600,7 +39426,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35711,6 +39546,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -35749,7 +39589,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35786,7 +39632,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35897,6 +39752,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -35935,7 +39795,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35972,7 +39838,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36083,6 +39958,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -36121,7 +40001,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36158,7 +40044,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36269,6 +40164,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -36307,7 +40207,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36344,7 +40250,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36455,6 +40370,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -36493,7 +40413,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36530,7 +40456,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36641,6 +40576,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -36679,7 +40619,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36716,7 +40662,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36827,6 +40782,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -36865,7 +40825,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36902,7 +40868,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37013,6 +40988,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -37051,7 +41031,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37088,7 +41074,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37199,6 +41194,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -37237,7 +41237,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37274,7 +41280,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37385,6 +41400,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -37423,7 +41443,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37460,7 +41486,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37571,6 +41606,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -37609,7 +41649,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37646,7 +41692,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37757,6 +41812,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -37795,7 +41855,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37832,7 +41898,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37943,6 +42018,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -37981,7 +42061,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38018,7 +42104,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38129,6 +42224,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -38167,7 +42267,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38204,7 +42310,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38315,6 +42430,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -38353,7 +42473,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38390,7 +42516,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38501,6 +42636,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -38539,7 +42679,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38576,7 +42722,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38687,6 +42842,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -38725,7 +42885,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38762,7 +42928,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38873,6 +43048,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -38911,7 +43091,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38948,7 +43134,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39059,6 +43254,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -39097,7 +43297,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39134,7 +43340,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39245,6 +43460,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -39283,7 +43503,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39320,7 +43546,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39431,6 +43666,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -39469,7 +43709,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39506,7 +43752,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39617,6 +43872,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -39655,7 +43915,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39692,7 +43958,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39803,6 +44078,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -39841,7 +44121,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39878,7 +44164,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39989,6 +44284,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -40027,7 +44327,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40064,7 +44370,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40175,6 +44490,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -40213,7 +44533,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40250,7 +44576,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40361,6 +44696,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -40399,7 +44739,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40436,7 +44782,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40547,6 +44902,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -40585,7 +44945,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40622,7 +44988,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40733,6 +45108,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -40771,7 +45151,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40808,7 +45194,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40919,6 +45314,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -40957,7 +45357,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40994,7 +45400,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41105,6 +45520,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -41143,7 +45563,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41180,7 +45606,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41291,6 +45726,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -41329,7 +45769,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41366,7 +45812,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41477,6 +45932,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -41515,7 +45975,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41552,7 +46018,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41663,6 +46138,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -41701,7 +46181,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41738,7 +46224,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41849,6 +46344,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -41887,7 +46387,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41924,7 +46430,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42035,6 +46550,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -42073,7 +46593,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42110,7 +46636,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42221,6 +46756,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -42259,7 +46799,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42296,7 +46842,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42407,6 +46962,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -42445,7 +47005,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42482,7 +47048,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42593,6 +47168,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -42631,7 +47211,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42668,7 +47254,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42779,6 +47374,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -42817,7 +47417,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42854,7 +47460,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42965,6 +47580,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -43003,7 +47623,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43040,7 +47666,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43151,6 +47786,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -43189,7 +47829,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43226,7 +47872,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43337,6 +47992,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -43375,7 +48035,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43412,7 +48078,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43523,6 +48198,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -43561,7 +48241,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43598,7 +48284,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43709,6 +48404,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -43747,7 +48447,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43784,7 +48490,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43895,6 +48610,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -43933,7 +48653,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43970,7 +48696,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44081,6 +48816,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -44119,7 +48859,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44156,7 +48902,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44267,6 +49022,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -44305,7 +49065,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44342,7 +49108,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44453,6 +49228,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -44491,7 +49271,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44528,7 +49314,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44639,6 +49434,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -44677,7 +49477,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44714,7 +49520,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44825,6 +49640,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -44863,7 +49683,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44900,7 +49726,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45011,6 +49846,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -45049,7 +49889,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45086,7 +49932,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45197,6 +50052,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -45235,7 +50095,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45272,7 +50138,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45383,6 +50258,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -45421,7 +50301,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45458,7 +50344,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45569,6 +50464,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -45607,7 +50507,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45644,7 +50550,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45755,6 +50670,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -45793,7 +50713,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45830,7 +50756,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45941,6 +50876,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -45979,7 +50919,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46016,7 +50962,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46127,6 +51082,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -46165,7 +51125,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46202,7 +51168,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46313,6 +51288,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -46351,7 +51331,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46388,7 +51374,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46499,6 +51494,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -46537,7 +51537,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46574,7 +51580,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46685,6 +51700,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -46723,7 +51743,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46760,7 +51786,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46871,6 +51906,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -46909,7 +51949,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46946,7 +51992,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47057,6 +52112,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -47095,7 +52155,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47132,7 +52198,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47243,6 +52318,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -47281,7 +52361,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47318,7 +52404,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47429,6 +52524,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -47467,7 +52567,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47504,7 +52610,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47615,6 +52730,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -47653,7 +52773,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47690,7 +52816,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47801,6 +52936,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -47839,7 +52979,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47876,7 +53022,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47987,6 +53142,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -48025,7 +53185,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48062,7 +53228,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48173,6 +53348,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -48211,7 +53391,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48248,7 +53434,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48359,6 +53554,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -48397,7 +53597,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48434,7 +53640,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48545,6 +53760,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -48583,7 +53803,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48620,7 +53846,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48731,6 +53966,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -48769,7 +54009,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48806,7 +54052,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48917,6 +54172,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -48955,7 +54215,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48992,7 +54258,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -49103,6 +54378,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -49141,7 +54421,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -49178,7 +54464,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -49289,6 +54584,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -49327,7 +54627,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -49364,7 +54670,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -49475,6 +54790,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -49513,7 +54833,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -49550,7 +54876,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -49661,6 +54996,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -49699,7 +55039,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -49736,7 +55082,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -49847,6 +55202,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -49885,7 +55245,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -49922,7 +55288,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50033,6 +55408,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -50071,7 +55451,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50108,7 +55494,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50219,6 +55614,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -50257,7 +55657,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50294,7 +55700,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50405,6 +55820,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -50443,7 +55863,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50480,7 +55906,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50591,6 +56026,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -50629,7 +56069,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50666,7 +56112,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50777,6 +56232,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -50815,7 +56275,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50852,7 +56318,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50963,6 +56438,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -51001,7 +56481,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51038,7 +56524,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51149,6 +56644,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -51187,7 +56687,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51224,7 +56730,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51335,6 +56850,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -51373,7 +56893,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51410,7 +56936,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51521,6 +57056,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -51559,7 +57099,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51596,7 +57142,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51707,6 +57262,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -51745,7 +57305,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51782,7 +57348,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51893,6 +57468,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -51931,7 +57511,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51968,7 +57554,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -52079,6 +57674,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -52117,7 +57717,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -52154,7 +57760,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -52265,6 +57880,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -52303,7 +57923,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -52340,7 +57966,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -52451,6 +58086,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -52489,7 +58129,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -52526,7 +58172,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -52637,6 +58292,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -52675,7 +58335,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -52712,7 +58378,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -52823,6 +58498,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -52861,7 +58541,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -52898,7 +58584,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -53009,6 +58704,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -53047,7 +58747,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -53084,7 +58790,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -53195,6 +58910,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -53233,7 +58953,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -53270,7 +58996,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -53381,6 +59116,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -53419,7 +59159,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -53456,7 +59202,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -53567,6 +59322,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -53605,7 +59365,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -53642,7 +59408,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -53753,6 +59528,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -53791,7 +59571,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -53828,7 +59614,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -53939,6 +59734,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -53977,7 +59777,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54014,7 +59820,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54125,6 +59940,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -54163,7 +59983,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54200,7 +60026,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54311,6 +60146,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -54349,7 +60189,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54386,7 +60232,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54497,6 +60352,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -54535,7 +60395,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54572,7 +60438,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54683,6 +60558,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -54721,7 +60601,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54758,7 +60644,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54869,6 +60764,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -54907,7 +60807,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54944,7 +60850,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55055,6 +60970,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -55093,7 +61013,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55130,7 +61056,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55241,6 +61176,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -55279,7 +61219,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55316,7 +61262,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55427,6 +61382,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -55465,7 +61425,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55502,7 +61468,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55613,6 +61588,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -55651,7 +61631,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55688,7 +61674,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55799,6 +61794,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -55837,7 +61837,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55874,7 +61880,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55985,6 +62000,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -56023,7 +62043,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56060,7 +62086,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56171,6 +62206,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -56209,7 +62249,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56246,7 +62292,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56357,6 +62412,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -56395,7 +62455,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56432,7 +62498,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56543,6 +62618,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -56581,7 +62661,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56618,7 +62704,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56729,6 +62824,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -56767,7 +62867,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56804,7 +62910,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56915,6 +63030,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -56953,7 +63073,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56990,7 +63116,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -57101,6 +63236,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -57139,7 +63279,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -57176,7 +63322,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -57287,6 +63442,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -57325,7 +63485,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -57362,7 +63528,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -57473,6 +63648,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -57511,7 +63691,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -57548,7 +63734,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -57659,6 +63854,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -57697,7 +63897,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -57734,7 +63940,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -57845,6 +64060,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -57883,7 +64103,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -57920,7 +64146,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58031,6 +64266,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -58069,7 +64309,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58106,7 +64352,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58217,6 +64472,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -58255,7 +64515,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58292,7 +64558,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58403,6 +64678,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -58441,7 +64721,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58478,7 +64764,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58589,6 +64884,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -58627,7 +64927,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58664,7 +64970,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58775,6 +65090,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -58813,7 +65133,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58850,7 +65176,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58961,6 +65296,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -58999,7 +65339,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59036,7 +65382,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59147,6 +65502,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -59185,7 +65545,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59222,7 +65588,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59333,6 +65708,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -59371,7 +65751,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59408,7 +65794,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59519,6 +65914,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -59557,7 +65957,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59594,7 +66000,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59705,6 +66120,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -59743,7 +66163,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59780,7 +66206,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59891,6 +66326,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -59929,7 +66369,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59966,7 +66412,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -60077,6 +66532,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -60115,7 +66575,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -60152,7 +66618,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -60263,6 +66738,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -60301,7 +66781,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -60338,7 +66824,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -60449,6 +66944,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -60487,7 +66987,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -60524,7 +67030,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -60635,6 +67150,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -60673,7 +67193,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -60710,7 +67236,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -60821,6 +67356,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -60859,7 +67399,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -60896,7 +67442,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61007,6 +67562,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -61045,7 +67605,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61082,7 +67648,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61193,6 +67768,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -61231,7 +67811,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61268,7 +67854,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61379,6 +67974,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -61417,7 +68017,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61454,7 +68060,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61565,6 +68180,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -61603,7 +68223,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61640,7 +68266,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61751,6 +68386,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -61789,7 +68429,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61826,7 +68472,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61937,6 +68592,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -61975,7 +68635,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62012,7 +68678,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62123,6 +68798,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -62161,7 +68841,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62198,7 +68884,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62309,6 +69004,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -62347,7 +69047,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62384,7 +69090,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62495,6 +69210,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -62533,7 +69253,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62570,7 +69296,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62681,6 +69416,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -62719,7 +69459,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62756,7 +69502,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62867,6 +69622,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -62905,7 +69665,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62942,7 +69708,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63053,6 +69828,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -63091,7 +69871,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63128,7 +69914,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63239,6 +70034,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -63277,7 +70077,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63314,7 +70120,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63425,6 +70240,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -63463,7 +70283,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63500,7 +70326,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63611,6 +70446,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -63649,7 +70489,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63686,7 +70532,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63797,6 +70652,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -63835,7 +70695,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63872,7 +70738,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63983,6 +70858,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -64021,7 +70901,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64058,7 +70944,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64169,6 +71064,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -64207,7 +71107,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64244,7 +71150,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64355,6 +71270,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -64393,7 +71313,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64430,7 +71356,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64541,6 +71476,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -64579,7 +71519,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64616,7 +71562,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64727,6 +71682,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -64765,7 +71725,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64802,7 +71768,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64913,6 +71888,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -64951,7 +71931,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64988,7 +71974,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -65099,6 +72094,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -65137,7 +72137,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -65174,7 +72180,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -65285,6 +72300,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -65323,7 +72343,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -65360,7 +72386,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -65471,6 +72506,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -65509,7 +72549,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -65546,7 +72592,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -65657,6 +72712,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -65695,7 +72755,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -65732,7 +72798,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -65843,6 +72918,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -65881,7 +72961,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -65918,7 +73004,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66029,6 +73124,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -66067,7 +73167,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66104,7 +73210,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66215,6 +73330,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -66253,7 +73373,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66290,7 +73416,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66401,6 +73536,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -66439,7 +73579,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66476,7 +73622,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66587,6 +73742,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -66625,7 +73785,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66662,7 +73828,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66773,6 +73948,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -66811,7 +73991,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66848,7 +74034,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66959,6 +74154,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -66997,7 +74197,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67034,7 +74240,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67145,6 +74360,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -67183,7 +74403,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67220,7 +74446,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67331,6 +74566,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -67369,7 +74609,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67406,7 +74652,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67517,6 +74772,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -67555,7 +74815,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67592,7 +74858,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67703,6 +74978,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -67741,7 +75021,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67778,7 +75064,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67889,6 +75184,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -67927,7 +75227,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67964,7 +75270,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -68075,6 +75390,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -68113,7 +75433,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -68150,7 +75476,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -68261,6 +75596,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -68299,7 +75639,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -68336,7 +75682,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -68447,6 +75802,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -68485,7 +75845,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -68522,7 +75888,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -68633,6 +76008,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -68671,7 +76051,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -68708,7 +76094,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -68819,6 +76214,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -68857,7 +76257,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -68894,7 +76300,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69005,6 +76420,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -69043,7 +76463,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69080,7 +76506,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69191,6 +76626,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -69229,7 +76669,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69266,7 +76712,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69377,6 +76832,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -69415,7 +76875,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69452,7 +76918,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69563,6 +77038,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -69601,7 +77081,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69638,7 +77124,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69749,6 +77244,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -69787,7 +77287,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69824,7 +77330,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69935,6 +77450,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -69973,7 +77493,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70010,7 +77536,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70121,6 +77656,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -70159,7 +77699,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70196,7 +77742,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70307,6 +77862,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -70345,7 +77905,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70382,7 +77948,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70493,6 +78068,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -70531,7 +78111,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70568,7 +78154,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70679,6 +78274,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -70717,7 +78317,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70754,7 +78360,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70865,6 +78480,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -70903,7 +78523,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70940,7 +78566,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -71051,6 +78686,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -71089,7 +78729,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -71126,7 +78772,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -71237,6 +78892,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } }, @@ -71275,7 +78935,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -71312,7 +78978,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -71423,6 +79098,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-08-26T14:49:25.6278519-04:00", + "protocol name": "bar" } } } @@ -71439,7 +79119,7 @@ "software name": "Kaleido", "software version": "2.0.3058.126", "ASM converter name": "allotropy_revvity_kaleido", - "ASM converter version": "0.1.61" + "ASM converter version": "0.1.105" } } } diff --git a/tests/parsers/revvity_kaleido/testdata/optical_imaging/optical_imaging_endpoint_single_plate_example_02.json b/tests/parsers/revvity_kaleido/testdata/optical_imaging/optical_imaging_endpoint_single_plate_example_02.json index 459dcae7b2..f35ed9903f 100644 --- a/tests/parsers/revvity_kaleido/testdata/optical_imaging/optical_imaging_endpoint_single_plate_example_02.json +++ b/tests/parsers/revvity_kaleido/testdata/optical_imaging/optical_imaging_endpoint_single_plate_example_02.json @@ -37,7 +37,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -74,7 +80,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -201,6 +216,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -239,7 +259,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -276,7 +302,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -403,6 +438,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -441,7 +481,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -478,7 +524,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -605,6 +660,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -643,7 +703,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -680,7 +746,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -807,6 +882,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -845,7 +925,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -882,7 +968,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1009,6 +1104,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -1047,7 +1147,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1084,7 +1190,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1211,6 +1326,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -1249,7 +1369,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1286,7 +1412,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1413,6 +1548,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -1451,7 +1591,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1488,7 +1634,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1615,6 +1770,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -1653,7 +1813,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1690,7 +1856,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1817,6 +1992,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -1855,7 +2035,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1892,7 +2078,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2019,6 +2214,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -2057,7 +2257,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2094,7 +2300,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2221,6 +2436,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -2259,7 +2479,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2296,7 +2522,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2423,6 +2658,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -2461,7 +2701,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2498,7 +2744,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2625,6 +2880,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -2663,7 +2923,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2700,7 +2966,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2827,6 +3102,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -2865,7 +3145,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2902,7 +3188,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3029,6 +3324,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -3067,7 +3367,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3104,7 +3410,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3231,6 +3546,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -3269,7 +3589,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3306,7 +3632,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3433,6 +3768,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -3471,7 +3811,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3508,7 +3854,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3635,6 +3990,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -3673,7 +4033,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3710,7 +4076,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3837,6 +4212,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -3875,7 +4255,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3912,7 +4298,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4039,6 +4434,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -4077,7 +4477,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4114,7 +4520,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4241,6 +4656,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -4279,7 +4699,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4316,7 +4742,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4443,6 +4878,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -4481,7 +4921,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4518,7 +4964,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4645,6 +5100,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -4683,7 +5143,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4720,7 +5186,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4847,6 +5322,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -4885,7 +5365,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4922,7 +5408,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5049,6 +5544,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -5087,7 +5587,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5124,7 +5630,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5251,6 +5766,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -5289,7 +5809,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5326,7 +5852,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5453,6 +5988,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -5491,7 +6031,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5528,7 +6074,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5655,6 +6210,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -5693,7 +6253,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5730,7 +6296,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5857,6 +6432,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -5895,7 +6475,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5932,7 +6518,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6059,6 +6654,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -6097,7 +6697,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6134,7 +6740,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6261,6 +6876,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -6299,7 +6919,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6336,7 +6962,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6463,6 +7098,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -6501,7 +7141,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6538,7 +7184,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6665,6 +7320,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -6703,7 +7363,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6740,7 +7406,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6867,6 +7542,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -6905,7 +7585,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6942,7 +7628,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7069,6 +7764,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -7107,7 +7807,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7144,7 +7850,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7271,6 +7986,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -7309,7 +8029,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7346,7 +8072,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7473,6 +8208,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -7511,7 +8251,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7548,7 +8294,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7675,6 +8430,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -7713,7 +8473,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7750,7 +8516,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7877,6 +8652,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -7915,7 +8695,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7952,7 +8738,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8079,6 +8874,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -8117,7 +8917,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8154,7 +8960,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8281,6 +9096,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -8319,7 +9139,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8356,7 +9182,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8483,6 +9318,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -8521,7 +9361,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8558,7 +9404,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8685,6 +9540,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -8723,7 +9583,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8760,7 +9626,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8887,6 +9762,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -8925,7 +9805,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8962,7 +9848,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9089,6 +9984,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -9127,7 +10027,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9164,7 +10070,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9291,6 +10206,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -9329,7 +10249,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9366,7 +10292,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9493,6 +10428,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -9531,7 +10471,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9568,7 +10514,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9695,6 +10650,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -9733,7 +10693,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9770,7 +10736,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9897,6 +10872,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -9935,7 +10915,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9972,7 +10958,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10099,6 +11094,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -10137,7 +11137,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10174,7 +11180,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10301,6 +11316,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -10339,7 +11359,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10376,7 +11402,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10503,6 +11538,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -10541,7 +11581,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10578,7 +11624,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10705,6 +11760,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -10743,7 +11803,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10780,7 +11846,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10907,6 +11982,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -10945,7 +12025,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10982,7 +12068,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11109,6 +12204,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -11147,7 +12247,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11184,7 +12290,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11311,6 +12426,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -11349,7 +12469,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11386,7 +12512,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11513,6 +12648,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -11551,7 +12691,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11588,7 +12734,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11715,6 +12870,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -11753,7 +12913,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11790,7 +12956,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11917,6 +13092,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -11955,7 +13135,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11992,7 +13178,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12119,6 +13314,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -12157,7 +13357,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12194,7 +13400,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12321,6 +13536,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -12359,7 +13579,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12396,7 +13622,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12523,6 +13758,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -12561,7 +13801,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12598,7 +13844,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12725,6 +13980,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -12763,7 +14023,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12800,7 +14066,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12927,6 +14202,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -12965,7 +14245,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13002,7 +14288,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13129,6 +14424,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -13167,7 +14467,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13204,7 +14510,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13331,6 +14646,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -13369,7 +14689,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13406,7 +14732,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13533,6 +14868,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -13571,7 +14911,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13608,7 +14954,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13735,6 +15090,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -13773,7 +15133,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13810,7 +15176,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13937,6 +15312,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -13975,7 +15355,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14012,7 +15398,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14139,6 +15534,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -14177,7 +15577,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14214,7 +15620,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14341,6 +15756,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -14379,7 +15799,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14416,7 +15842,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14543,6 +15978,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -14581,7 +16021,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14618,7 +16064,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14745,6 +16200,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -14783,7 +16243,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14820,7 +16286,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14947,6 +16422,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -14985,7 +16465,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15022,7 +16508,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15149,6 +16644,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -15187,7 +16687,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15224,7 +16730,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15351,6 +16866,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -15389,7 +16909,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15426,7 +16952,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15553,6 +17088,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -15591,7 +17131,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15628,7 +17174,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15755,6 +17310,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -15793,7 +17353,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15830,7 +17396,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15957,6 +17532,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -15995,7 +17575,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16032,7 +17618,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16159,6 +17754,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -16197,7 +17797,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16234,7 +17840,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16361,6 +17976,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -16399,7 +18019,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16436,7 +18062,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16563,6 +18198,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -16601,7 +18241,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16638,7 +18284,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16765,6 +18420,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -16803,7 +18463,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16840,7 +18506,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16967,6 +18642,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -17005,7 +18685,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17042,7 +18728,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17169,6 +18864,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -17207,7 +18907,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17244,7 +18950,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17371,6 +19086,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -17409,7 +19129,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17446,7 +19172,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17573,6 +19308,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -17611,7 +19351,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17648,7 +19394,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17775,6 +19530,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -17813,7 +19573,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17850,7 +19616,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17977,6 +19752,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -18015,7 +19795,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18052,7 +19838,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18179,6 +19974,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -18217,7 +20017,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18254,7 +20060,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18381,6 +20196,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -18419,7 +20239,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18456,7 +20282,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18583,6 +20418,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -18621,7 +20461,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18658,7 +20504,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18785,6 +20640,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -18823,7 +20683,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18860,7 +20726,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18987,6 +20862,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -19025,7 +20905,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19062,7 +20948,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19189,6 +21084,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -19227,7 +21127,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19264,7 +21170,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19391,6 +21306,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -19429,7 +21349,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19466,7 +21392,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19593,6 +21528,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -19631,7 +21571,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19668,7 +21614,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19795,6 +21750,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -19833,7 +21793,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19870,7 +21836,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19997,6 +21972,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -20035,7 +22015,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20072,7 +22058,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20199,6 +22194,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -20237,7 +22237,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20274,7 +22280,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20401,6 +22416,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -20439,7 +22459,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20476,7 +22502,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20603,6 +22638,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -20641,7 +22681,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20678,7 +22724,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20805,6 +22860,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -20843,7 +22903,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20880,7 +22946,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21007,6 +23082,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -21045,7 +23125,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21082,7 +23168,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21209,6 +23304,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -21247,7 +23347,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21284,7 +23390,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21411,6 +23526,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -21449,7 +23569,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21486,7 +23612,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21613,6 +23748,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -21651,7 +23791,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21688,7 +23834,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21815,6 +23970,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -21853,7 +24013,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21890,7 +24056,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22017,6 +24192,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -22055,7 +24235,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22092,7 +24278,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22219,6 +24414,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -22257,7 +24457,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22294,7 +24500,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22421,6 +24636,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -22459,7 +24679,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22496,7 +24722,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22623,6 +24858,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -22661,7 +24901,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22698,7 +24944,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22825,6 +25080,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -22863,7 +25123,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22900,7 +25166,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23027,6 +25302,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -23065,7 +25345,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23102,7 +25388,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23229,6 +25524,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -23267,7 +25567,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23304,7 +25610,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23431,6 +25746,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -23469,7 +25789,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23506,7 +25832,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23633,6 +25968,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -23671,7 +26011,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23708,7 +26054,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23835,6 +26190,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -23873,7 +26233,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23910,7 +26276,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24037,6 +26412,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -24075,7 +26455,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24112,7 +26498,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24239,6 +26634,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -24277,7 +26677,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24314,7 +26720,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24441,6 +26856,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -24479,7 +26899,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24516,7 +26942,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24643,6 +27078,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -24681,7 +27121,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24718,7 +27164,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24845,6 +27300,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -24883,7 +27343,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24920,7 +27386,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25047,6 +27522,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -25085,7 +27565,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25122,7 +27608,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25249,6 +27744,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -25287,7 +27787,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25324,7 +27830,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25451,6 +27966,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -25489,7 +28009,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25526,7 +28052,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25653,6 +28188,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -25691,7 +28231,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25728,7 +28274,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25855,6 +28410,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -25893,7 +28453,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25930,7 +28496,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26057,6 +28632,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -26095,7 +28675,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26132,7 +28718,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26259,6 +28854,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -26297,7 +28897,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26334,7 +28940,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26461,6 +29076,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -26499,7 +29119,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26536,7 +29162,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26663,6 +29298,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -26701,7 +29341,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26738,7 +29384,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26865,6 +29520,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -26903,7 +29563,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26940,7 +29606,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27067,6 +29742,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -27105,7 +29785,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27142,7 +29828,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27269,6 +29964,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -27307,7 +30007,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27344,7 +30050,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27471,6 +30186,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -27509,7 +30229,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27546,7 +30272,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27673,6 +30408,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -27711,7 +30451,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27748,7 +30494,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27875,6 +30630,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -27913,7 +30673,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27950,7 +30716,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28077,6 +30852,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -28115,7 +30895,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28152,7 +30938,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28279,6 +31074,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -28317,7 +31117,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28354,7 +31160,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28481,6 +31296,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -28519,7 +31339,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28556,7 +31382,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28683,6 +31518,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -28721,7 +31561,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28758,7 +31604,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28885,6 +31740,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -28923,7 +31783,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28960,7 +31826,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29087,6 +31962,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -29125,7 +32005,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29162,7 +32048,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29289,6 +32184,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -29327,7 +32227,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29364,7 +32270,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29491,6 +32406,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -29529,7 +32449,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29566,7 +32492,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29693,6 +32628,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -29731,7 +32671,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29768,7 +32714,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29895,6 +32850,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -29933,7 +32893,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29970,7 +32936,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30097,6 +33072,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -30135,7 +33115,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30172,7 +33158,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30299,6 +33294,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -30337,7 +33337,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30374,7 +33380,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30501,6 +33516,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -30539,7 +33559,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30576,7 +33602,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30703,6 +33738,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -30741,7 +33781,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30778,7 +33824,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30905,6 +33960,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -30943,7 +34003,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30980,7 +34046,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31107,6 +34182,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -31145,7 +34225,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31182,7 +34268,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31309,6 +34404,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -31347,7 +34447,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31384,7 +34490,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31511,6 +34626,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -31549,7 +34669,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31586,7 +34712,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31713,6 +34848,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -31751,7 +34891,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31788,7 +34934,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31915,6 +35070,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -31953,7 +35113,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31990,7 +35156,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32117,6 +35292,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -32155,7 +35335,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32192,7 +35378,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32319,6 +35514,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -32357,7 +35557,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32394,7 +35600,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32521,6 +35736,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -32559,7 +35779,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32596,7 +35822,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32723,6 +35958,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -32761,7 +36001,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32798,7 +36044,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32925,6 +36180,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -32963,7 +36223,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33000,7 +36266,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33127,6 +36402,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -33165,7 +36445,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33202,7 +36488,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33329,6 +36624,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -33367,7 +36667,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33404,7 +36710,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33531,6 +36846,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -33569,7 +36889,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33606,7 +36932,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33733,6 +37068,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -33771,7 +37111,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33808,7 +37154,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33935,6 +37290,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -33973,7 +37333,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34010,7 +37376,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34137,6 +37512,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -34175,7 +37555,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34212,7 +37598,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34339,6 +37734,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -34377,7 +37777,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34414,7 +37820,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34541,6 +37956,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -34579,7 +37999,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34616,7 +38042,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34743,6 +38178,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -34781,7 +38221,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34818,7 +38264,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34945,6 +38400,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -34983,7 +38443,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35020,7 +38486,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35147,6 +38622,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -35185,7 +38665,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35222,7 +38708,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35349,6 +38844,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -35387,7 +38887,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35424,7 +38930,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35551,6 +39066,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -35589,7 +39109,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35626,7 +39152,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35753,6 +39288,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -35791,7 +39331,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35828,7 +39374,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35955,6 +39510,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -35993,7 +39553,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36030,7 +39596,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36157,6 +39732,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -36195,7 +39775,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36232,7 +39818,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36359,6 +39954,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -36397,7 +39997,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36434,7 +40040,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36561,6 +40176,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -36599,7 +40219,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36636,7 +40262,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36763,6 +40398,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -36801,7 +40441,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36838,7 +40484,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36965,6 +40620,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -37003,7 +40663,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37040,7 +40706,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37167,6 +40842,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -37205,7 +40885,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37242,7 +40928,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37369,6 +41064,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -37407,7 +41107,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37444,7 +41150,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37571,6 +41286,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -37609,7 +41329,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37646,7 +41372,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37773,6 +41508,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -37811,7 +41551,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37848,7 +41594,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37975,6 +41730,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -38013,7 +41773,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38050,7 +41816,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38177,6 +41952,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -38215,7 +41995,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38252,7 +42038,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38379,6 +42174,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -38417,7 +42217,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38454,7 +42260,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38581,6 +42396,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -38619,7 +42439,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38656,7 +42482,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38783,6 +42618,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -38821,7 +42661,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38858,7 +42704,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38985,6 +42840,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -39023,7 +42883,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39060,7 +42926,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39187,6 +43062,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -39225,7 +43105,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39262,7 +43148,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39389,6 +43284,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -39427,7 +43327,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39464,7 +43370,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39591,6 +43506,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -39629,7 +43549,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39666,7 +43592,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39793,6 +43728,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -39831,7 +43771,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39868,7 +43814,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39995,6 +43950,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -40033,7 +43993,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40070,7 +44036,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40197,6 +44172,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -40235,7 +44215,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40272,7 +44258,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40399,6 +44394,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -40437,7 +44437,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40474,7 +44480,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40601,6 +44616,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -40639,7 +44659,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40676,7 +44702,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40803,6 +44838,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -40841,7 +44881,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40878,7 +44924,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41005,6 +45060,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -41043,7 +45103,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41080,7 +45146,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41207,6 +45282,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -41245,7 +45325,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41282,7 +45368,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41409,6 +45504,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -41447,7 +45547,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41484,7 +45590,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41611,6 +45726,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -41649,7 +45769,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41686,7 +45812,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41813,6 +45948,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -41851,7 +45991,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41888,7 +46034,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42015,6 +46170,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -42053,7 +46213,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42090,7 +46256,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42217,6 +46392,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -42255,7 +46435,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42292,7 +46478,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42419,6 +46614,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -42457,7 +46657,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42494,7 +46700,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42621,6 +46836,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -42659,7 +46879,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42696,7 +46922,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42823,6 +47058,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -42861,7 +47101,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42898,7 +47144,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43025,6 +47280,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -43063,7 +47323,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43100,7 +47366,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43227,6 +47502,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -43265,7 +47545,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43302,7 +47588,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43429,6 +47724,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -43467,7 +47767,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43504,7 +47810,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43631,6 +47946,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -43669,7 +47989,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43706,7 +48032,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43833,6 +48168,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -43871,7 +48211,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43908,7 +48254,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44035,6 +48390,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -44073,7 +48433,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44110,7 +48476,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44237,6 +48612,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -44275,7 +48655,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44312,7 +48698,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44439,6 +48834,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -44477,7 +48877,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44514,7 +48920,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44641,6 +49056,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -44679,7 +49099,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44716,7 +49142,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44843,6 +49278,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -44881,7 +49321,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44918,7 +49364,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45045,6 +49500,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -45083,7 +49543,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45120,7 +49586,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45247,6 +49722,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -45285,7 +49765,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45322,7 +49808,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45449,6 +49944,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -45487,7 +49987,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45524,7 +50030,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45651,6 +50166,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -45689,7 +50209,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45726,7 +50252,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45853,6 +50388,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -45891,7 +50431,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45928,7 +50474,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46055,6 +50610,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -46093,7 +50653,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46130,7 +50696,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46257,6 +50832,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -46295,7 +50875,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46332,7 +50918,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46459,6 +51054,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -46497,7 +51097,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46534,7 +51140,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46661,6 +51276,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -46699,7 +51319,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46736,7 +51362,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46863,6 +51498,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -46901,7 +51541,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46938,7 +51584,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47065,6 +51720,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -47103,7 +51763,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47140,7 +51806,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47267,6 +51942,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -47305,7 +51985,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47342,7 +52028,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47469,6 +52164,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -47507,7 +52207,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47544,7 +52250,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47671,6 +52386,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -47709,7 +52429,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47746,7 +52472,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47873,6 +52608,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -47911,7 +52651,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -47948,7 +52694,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48075,6 +52830,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -48113,7 +52873,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48150,7 +52916,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48277,6 +53052,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -48315,7 +53095,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48352,7 +53138,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48479,6 +53274,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -48517,7 +53317,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48554,7 +53360,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48681,6 +53496,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -48719,7 +53539,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48756,7 +53582,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48883,6 +53718,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -48921,7 +53761,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -48958,7 +53804,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -49085,6 +53940,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -49123,7 +53983,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -49160,7 +54026,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -49287,6 +54162,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -49325,7 +54205,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -49362,7 +54248,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -49489,6 +54384,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -49527,7 +54427,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -49564,7 +54470,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -49691,6 +54606,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -49729,7 +54649,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -49766,7 +54692,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -49893,6 +54828,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -49931,7 +54871,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -49968,7 +54914,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50095,6 +55050,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -50133,7 +55093,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50170,7 +55136,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50297,6 +55272,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -50335,7 +55315,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50372,7 +55358,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50499,6 +55494,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -50537,7 +55537,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50574,7 +55580,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50701,6 +55716,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -50739,7 +55759,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50776,7 +55802,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50903,6 +55938,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -50941,7 +55981,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -50978,7 +56024,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51105,6 +56160,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -51143,7 +56203,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51180,7 +56246,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51307,6 +56382,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -51345,7 +56425,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51382,7 +56468,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51509,6 +56604,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -51547,7 +56647,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51584,7 +56690,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51711,6 +56826,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -51749,7 +56869,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51786,7 +56912,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51913,6 +57048,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -51951,7 +57091,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -51988,7 +57134,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -52115,6 +57270,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -52153,7 +57313,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -52190,7 +57356,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -52317,6 +57492,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -52355,7 +57535,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -52392,7 +57578,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -52519,6 +57714,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -52557,7 +57757,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -52594,7 +57800,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -52721,6 +57936,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -52759,7 +57979,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -52796,7 +58022,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -52923,6 +58158,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -52961,7 +58201,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -52998,7 +58244,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -53125,6 +58380,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -53163,7 +58423,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -53200,7 +58466,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -53327,6 +58602,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -53365,7 +58645,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -53402,7 +58688,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -53529,6 +58824,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -53567,7 +58867,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -53604,7 +58910,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -53731,6 +59046,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -53769,7 +59089,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -53806,7 +59132,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -53933,6 +59268,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -53971,7 +59311,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54008,7 +59354,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54135,6 +59490,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -54173,7 +59533,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54210,7 +59576,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54337,6 +59712,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -54375,7 +59755,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54412,7 +59798,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54539,6 +59934,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -54577,7 +59977,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54614,7 +60020,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54741,6 +60156,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -54779,7 +60199,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54816,7 +60242,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -54943,6 +60378,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -54981,7 +60421,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55018,7 +60464,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55145,6 +60600,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -55183,7 +60643,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55220,7 +60686,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55347,6 +60822,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -55385,7 +60865,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55422,7 +60908,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55549,6 +61044,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -55587,7 +61087,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55624,7 +61130,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55751,6 +61266,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -55789,7 +61309,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55826,7 +61352,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -55953,6 +61488,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -55991,7 +61531,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56028,7 +61574,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56155,6 +61710,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -56193,7 +61753,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56230,7 +61796,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56357,6 +61932,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -56395,7 +61975,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56432,7 +62018,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56559,6 +62154,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -56597,7 +62197,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56634,7 +62240,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56761,6 +62376,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -56799,7 +62419,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56836,7 +62462,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -56963,6 +62598,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -57001,7 +62641,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -57038,7 +62684,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -57165,6 +62820,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -57203,7 +62863,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -57240,7 +62906,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -57367,6 +63042,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -57405,7 +63085,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -57442,7 +63128,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -57569,6 +63264,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -57607,7 +63307,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -57644,7 +63350,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -57771,6 +63486,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -57809,7 +63529,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -57846,7 +63572,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -57973,6 +63708,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -58011,7 +63751,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58048,7 +63794,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58175,6 +63930,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -58213,7 +63973,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58250,7 +64016,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58377,6 +64152,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -58415,7 +64195,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58452,7 +64238,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58579,6 +64374,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -58617,7 +64417,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58654,7 +64460,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58781,6 +64596,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -58819,7 +64639,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58856,7 +64682,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -58983,6 +64818,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -59021,7 +64861,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59058,7 +64904,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59185,6 +65040,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -59223,7 +65083,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59260,7 +65126,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59387,6 +65262,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -59425,7 +65305,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59462,7 +65348,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59589,6 +65484,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -59627,7 +65527,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59664,7 +65570,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59791,6 +65706,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -59829,7 +65749,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59866,7 +65792,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -59993,6 +65928,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -60031,7 +65971,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -60068,7 +66014,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -60195,6 +66150,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -60233,7 +66193,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -60270,7 +66236,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -60397,6 +66372,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -60435,7 +66415,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -60472,7 +66458,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -60599,6 +66594,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -60637,7 +66637,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -60674,7 +66680,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -60801,6 +66816,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -60839,7 +66859,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -60876,7 +66902,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61003,6 +67038,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -61041,7 +67081,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61078,7 +67124,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61205,6 +67260,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -61243,7 +67303,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61280,7 +67346,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61407,6 +67482,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -61445,7 +67525,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61482,7 +67568,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61609,6 +67704,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -61647,7 +67747,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61684,7 +67790,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61811,6 +67926,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -61849,7 +67969,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -61886,7 +68012,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62013,6 +68148,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -62051,7 +68191,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62088,7 +68234,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62215,6 +68370,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -62253,7 +68413,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62290,7 +68456,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62417,6 +68592,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -62455,7 +68635,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62492,7 +68678,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62619,6 +68814,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -62657,7 +68857,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62694,7 +68900,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62821,6 +69036,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -62859,7 +69079,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -62896,7 +69122,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63023,6 +69258,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -63061,7 +69301,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63098,7 +69344,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63225,6 +69480,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -63263,7 +69523,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63300,7 +69566,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63427,6 +69702,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -63465,7 +69745,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63502,7 +69788,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63629,6 +69924,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -63667,7 +69967,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63704,7 +70010,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63831,6 +70146,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -63869,7 +70189,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -63906,7 +70232,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64033,6 +70368,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -64071,7 +70411,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64108,7 +70454,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64235,6 +70590,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -64273,7 +70633,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64310,7 +70676,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64437,6 +70812,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -64475,7 +70855,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64512,7 +70898,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64639,6 +71034,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -64677,7 +71077,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64714,7 +71120,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64841,6 +71256,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -64879,7 +71299,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -64916,7 +71342,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -65043,6 +71478,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -65081,7 +71521,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -65118,7 +71564,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -65245,6 +71700,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -65283,7 +71743,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -65320,7 +71786,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -65447,6 +71922,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -65485,7 +71965,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -65522,7 +72008,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -65649,6 +72144,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -65687,7 +72187,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -65724,7 +72230,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -65851,6 +72366,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -65889,7 +72409,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -65926,7 +72452,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66053,6 +72588,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -66091,7 +72631,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66128,7 +72674,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66255,6 +72810,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -66293,7 +72853,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66330,7 +72896,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66457,6 +73032,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -66495,7 +73075,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66532,7 +73118,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66659,6 +73254,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -66697,7 +73297,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66734,7 +73340,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66861,6 +73476,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -66899,7 +73519,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -66936,7 +73562,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67063,6 +73698,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -67101,7 +73741,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67138,7 +73784,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67265,6 +73920,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -67303,7 +73963,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67340,7 +74006,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67467,6 +74142,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -67505,7 +74185,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67542,7 +74228,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67669,6 +74364,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -67707,7 +74407,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67744,7 +74450,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67871,6 +74586,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -67909,7 +74629,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -67946,7 +74672,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -68073,6 +74808,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -68111,7 +74851,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -68148,7 +74894,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -68275,6 +75030,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -68313,7 +75073,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -68350,7 +75116,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -68477,6 +75252,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -68515,7 +75295,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -68552,7 +75338,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -68679,6 +75474,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -68717,7 +75517,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -68754,7 +75560,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -68881,6 +75696,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -68919,7 +75739,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -68956,7 +75782,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69083,6 +75918,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -69121,7 +75961,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69158,7 +76004,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69285,6 +76140,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -69323,7 +76183,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69360,7 +76226,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69487,6 +76362,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -69525,7 +76405,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69562,7 +76448,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69689,6 +76584,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -69727,7 +76627,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69764,7 +76670,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69891,6 +76806,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -69929,7 +76849,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -69966,7 +76892,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70093,6 +77028,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -70131,7 +77071,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70168,7 +77114,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70295,6 +77250,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -70333,7 +77293,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70370,7 +77336,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70497,6 +77472,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -70535,7 +77515,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70572,7 +77558,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70699,6 +77694,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -70737,7 +77737,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70774,7 +77780,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70901,6 +77916,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -70939,7 +77959,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -70976,7 +78002,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -71103,6 +78138,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -71141,7 +78181,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -71178,7 +78224,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -71305,6 +78360,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -71343,7 +78403,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -71380,7 +78446,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -71507,6 +78582,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -71545,7 +78625,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -71582,7 +78668,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -71709,6 +78804,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -71747,7 +78847,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -71784,7 +78890,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -71911,6 +79026,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -71949,7 +79069,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -71986,7 +79112,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -72113,6 +79248,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -72151,7 +79291,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -72188,7 +79334,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -72315,6 +79470,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -72353,7 +79513,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -72390,7 +79556,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -72517,6 +79692,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -72555,7 +79735,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -72592,7 +79778,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -72719,6 +79914,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -72757,7 +79957,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -72794,7 +80000,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -72921,6 +80136,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -72959,7 +80179,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -72996,7 +80222,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -73123,6 +80358,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -73161,7 +80401,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -73198,7 +80444,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -73325,6 +80580,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -73363,7 +80623,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -73400,7 +80666,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -73527,6 +80802,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -73565,7 +80845,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -73602,7 +80888,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -73729,6 +81024,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -73767,7 +81067,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -73804,7 +81110,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -73931,6 +81246,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -73969,7 +81289,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -74006,7 +81332,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -74133,6 +81468,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -74171,7 +81511,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -74208,7 +81554,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -74335,6 +81690,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -74373,7 +81733,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -74410,7 +81776,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -74537,6 +81912,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -74575,7 +81955,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -74612,7 +81998,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -74739,6 +82134,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -74777,7 +82177,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -74814,7 +82220,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -74941,6 +82356,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -74979,7 +82399,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -75016,7 +82442,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -75143,6 +82578,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -75181,7 +82621,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -75218,7 +82664,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -75345,6 +82800,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -75383,7 +82843,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -75420,7 +82886,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -75547,6 +83022,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -75585,7 +83065,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -75622,7 +83108,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -75749,6 +83244,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -75787,7 +83287,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -75824,7 +83330,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -75951,6 +83466,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -75989,7 +83509,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -76026,7 +83552,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -76153,6 +83688,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -76191,7 +83731,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -76228,7 +83774,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -76355,6 +83910,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -76393,7 +83953,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -76430,7 +83996,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -76557,6 +84132,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -76595,7 +84175,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -76632,7 +84218,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -76759,6 +84354,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -76797,7 +84397,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -76834,7 +84440,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -76961,6 +84576,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -76999,7 +84619,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -77036,7 +84662,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -77163,6 +84798,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -77201,7 +84841,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -77238,7 +84884,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -77365,6 +85020,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } }, @@ -77403,7 +85063,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GFP" + "fluorescent tag setting": "GFP", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -77440,7 +85106,16 @@ "value": 4.0, "unit": "%" }, - "transmitted light setting": "brightfield" + "transmitted light setting": "brightfield", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "generate bright field": true, + "digital phase contrast": true, + "generate dpc": false, + "additional focus offset [mm]": 0.0 + } } ] }, @@ -77567,6 +85242,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foo", + "measurement finished": "2022-09-15T13:19:29.5970049-04:00", + "protocol name": "bar" } } } @@ -77583,7 +85263,7 @@ "software name": "Kaleido", "software version": "2.0.3058.126", "ASM converter name": "allotropy_revvity_kaleido", - "ASM converter version": "0.1.61" + "ASM converter version": "0.1.105" } } } diff --git a/tests/parsers/revvity_kaleido/testdata/optical_imaging/optical_imaging_endpoint_single_plate_example_03.json b/tests/parsers/revvity_kaleido/testdata/optical_imaging/optical_imaging_endpoint_single_plate_example_03.json index a0bf43d573..60ff8a2e97 100644 --- a/tests/parsers/revvity_kaleido/testdata/optical_imaging/optical_imaging_endpoint_single_plate_example_03.json +++ b/tests/parsers/revvity_kaleido/testdata/optical_imaging/optical_imaging_endpoint_single_plate_example_03.json @@ -37,7 +37,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -74,7 +80,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -121,6 +133,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -159,7 +176,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -196,7 +219,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -243,6 +272,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -281,7 +315,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -318,7 +358,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -365,6 +411,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -403,7 +454,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -440,7 +497,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -487,6 +550,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -525,7 +593,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -562,7 +636,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -609,6 +689,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -647,7 +732,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -684,7 +775,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -731,6 +828,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -769,7 +871,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -806,7 +914,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -853,6 +967,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -891,7 +1010,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -928,7 +1053,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -975,6 +1106,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -1013,7 +1149,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1050,7 +1192,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1097,6 +1245,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -1135,7 +1288,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1172,7 +1331,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1219,6 +1384,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -1257,7 +1427,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1294,7 +1470,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1341,6 +1523,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -1379,7 +1566,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1416,7 +1609,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1463,6 +1662,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -1501,7 +1705,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1538,7 +1748,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1585,6 +1801,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -1623,7 +1844,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1660,7 +1887,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1707,6 +1940,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -1745,7 +1983,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1782,7 +2026,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1829,6 +2079,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -1867,7 +2122,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1904,7 +2165,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -1951,6 +2218,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -1989,7 +2261,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2026,7 +2304,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2073,6 +2357,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -2111,7 +2400,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2148,7 +2443,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2195,6 +2496,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -2233,7 +2539,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2270,7 +2582,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2317,6 +2635,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -2355,7 +2678,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2392,7 +2721,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2439,6 +2774,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -2477,7 +2817,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2514,7 +2860,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2561,6 +2913,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -2599,7 +2956,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2636,7 +2999,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2683,6 +3052,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -2721,7 +3095,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2758,7 +3138,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2805,6 +3191,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -2843,7 +3234,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2880,7 +3277,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -2927,6 +3330,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -2965,7 +3373,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3002,7 +3416,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3049,6 +3469,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -3087,7 +3512,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3124,7 +3555,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3171,6 +3608,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -3209,7 +3651,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3246,7 +3694,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3293,6 +3747,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -3331,7 +3790,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3368,7 +3833,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3415,6 +3886,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -3453,7 +3929,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3490,7 +3972,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3537,6 +4025,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -3575,7 +4068,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3612,7 +4111,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3659,6 +4164,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -3697,7 +4207,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3734,7 +4250,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3781,6 +4303,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -3819,7 +4346,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3856,7 +4389,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3903,6 +4442,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -3941,7 +4485,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -3978,7 +4528,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4025,6 +4581,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -4063,7 +4624,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4100,7 +4667,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4147,6 +4720,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -4185,7 +4763,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4222,7 +4806,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4269,6 +4859,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -4307,7 +4902,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4344,7 +4945,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4391,6 +4998,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -4429,7 +5041,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4466,7 +5084,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4513,6 +5137,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -4551,7 +5180,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4588,7 +5223,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4635,6 +5276,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -4673,7 +5319,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4710,7 +5362,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4757,6 +5415,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -4795,7 +5458,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4832,7 +5501,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4879,6 +5554,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -4917,7 +5597,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -4954,7 +5640,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5001,6 +5693,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -5039,7 +5736,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5076,7 +5779,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5123,6 +5832,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -5161,7 +5875,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5198,7 +5918,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5245,6 +5971,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -5283,7 +6014,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5320,7 +6057,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5367,6 +6110,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -5405,7 +6153,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5442,7 +6196,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5489,6 +6249,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -5527,7 +6292,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5564,7 +6335,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5611,6 +6388,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -5649,7 +6431,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5686,7 +6474,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5733,6 +6527,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -5771,7 +6570,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5808,7 +6613,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5855,6 +6666,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -5893,7 +6709,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5930,7 +6752,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -5977,6 +6805,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -6015,7 +6848,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6052,7 +6891,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6099,6 +6944,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -6137,7 +6987,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6174,7 +7030,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6221,6 +7083,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -6259,7 +7126,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6296,7 +7169,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6343,6 +7222,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -6381,7 +7265,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6418,7 +7308,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6465,6 +7361,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -6503,7 +7404,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6540,7 +7447,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6587,6 +7500,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -6625,7 +7543,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6662,7 +7586,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6709,6 +7639,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -6747,7 +7682,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6784,7 +7725,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6831,6 +7778,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -6869,7 +7821,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6906,7 +7864,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -6953,6 +7917,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -6991,7 +7960,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7028,7 +8003,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7075,6 +8056,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -7113,7 +8099,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7150,7 +8142,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7197,6 +8195,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -7235,7 +8238,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7272,7 +8281,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7319,6 +8334,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -7357,7 +8377,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7394,7 +8420,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7441,6 +8473,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -7479,7 +8516,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7516,7 +8559,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7563,6 +8612,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -7601,7 +8655,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7638,7 +8698,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7685,6 +8751,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -7723,7 +8794,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7760,7 +8837,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7807,6 +8890,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -7845,7 +8933,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7882,7 +8976,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -7929,6 +9029,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -7967,7 +9072,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8004,7 +9115,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8051,6 +9168,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -8089,7 +9211,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8126,7 +9254,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8173,6 +9307,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -8211,7 +9350,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8248,7 +9393,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8295,6 +9446,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -8333,7 +9489,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8370,7 +9532,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8417,6 +9585,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -8455,7 +9628,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8492,7 +9671,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8539,6 +9724,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -8577,7 +9767,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8614,7 +9810,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8661,6 +9863,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -8699,7 +9906,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8736,7 +9949,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8783,6 +10002,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -8821,7 +10045,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8858,7 +10088,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8905,6 +10141,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -8943,7 +10184,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -8980,7 +10227,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9027,6 +10280,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -9065,7 +10323,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9102,7 +10366,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9149,6 +10419,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -9187,7 +10462,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9224,7 +10505,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9271,6 +10558,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -9309,7 +10601,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9346,7 +10644,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9393,6 +10697,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -9431,7 +10740,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9468,7 +10783,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9515,6 +10836,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -9553,7 +10879,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9590,7 +10922,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9637,6 +10975,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -9675,7 +11018,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9712,7 +11061,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9759,6 +11114,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -9797,7 +11157,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9834,7 +11200,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9881,6 +11253,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -9919,7 +11296,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -9956,7 +11339,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10003,6 +11392,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -10041,7 +11435,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10078,7 +11478,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10125,6 +11531,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -10163,7 +11574,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10200,7 +11617,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10247,6 +11670,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -10285,7 +11713,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10322,7 +11756,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10369,6 +11809,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -10407,7 +11852,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10444,7 +11895,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10491,6 +11948,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -10529,7 +11991,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10566,7 +12034,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10613,6 +12087,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -10651,7 +12130,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10688,7 +12173,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10735,6 +12226,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -10773,7 +12269,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10810,7 +12312,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10857,6 +12365,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -10895,7 +12408,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10932,7 +12451,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -10979,6 +12504,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -11017,7 +12547,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11054,7 +12590,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11101,6 +12643,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -11139,7 +12686,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11176,7 +12729,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11223,6 +12782,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -11261,7 +12825,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11298,7 +12868,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11345,6 +12921,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -11383,7 +12964,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11420,7 +13007,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11467,6 +13060,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -11505,7 +13103,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11542,7 +13146,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11589,6 +13199,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -11627,7 +13242,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11664,7 +13285,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11711,6 +13338,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -11749,7 +13381,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11786,7 +13424,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11833,6 +13477,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -11871,7 +13520,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11908,7 +13563,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -11955,6 +13616,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -11993,7 +13659,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12030,7 +13702,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12077,6 +13755,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -12115,7 +13798,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12152,7 +13841,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12199,6 +13894,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -12237,7 +13937,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12274,7 +13980,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12321,6 +14033,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -12359,7 +14076,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12396,7 +14119,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12443,6 +14172,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -12481,7 +14215,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12518,7 +14258,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12565,6 +14311,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -12603,7 +14354,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12640,7 +14397,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12687,6 +14450,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -12725,7 +14493,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12762,7 +14536,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12809,6 +14589,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -12847,7 +14632,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12884,7 +14675,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -12931,6 +14728,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -12969,7 +14771,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13006,7 +14814,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13053,6 +14867,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -13091,7 +14910,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13128,7 +14953,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13175,6 +15006,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -13213,7 +15049,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13250,7 +15092,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13297,6 +15145,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -13335,7 +15188,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13372,7 +15231,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13419,6 +15284,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -13457,7 +15327,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13494,7 +15370,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13541,6 +15423,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -13579,7 +15466,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13616,7 +15509,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13663,6 +15562,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -13701,7 +15605,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13738,7 +15648,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13785,6 +15701,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -13823,7 +15744,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13860,7 +15787,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13907,6 +15840,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -13945,7 +15883,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -13982,7 +15926,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14029,6 +15979,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -14067,7 +16022,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14104,7 +16065,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14151,6 +16118,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -14189,7 +16161,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14226,7 +16204,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14273,6 +16257,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -14311,7 +16300,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14348,7 +16343,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14395,6 +16396,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -14433,7 +16439,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14470,7 +16482,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14517,6 +16535,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -14555,7 +16578,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14592,7 +16621,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14639,6 +16674,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -14677,7 +16717,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14714,7 +16760,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14761,6 +16813,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -14799,7 +16856,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14836,7 +16899,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14883,6 +16952,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -14921,7 +16995,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -14958,7 +17038,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15005,6 +17091,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -15043,7 +17134,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15080,7 +17177,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15127,6 +17230,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -15165,7 +17273,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15202,7 +17316,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15249,6 +17369,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -15287,7 +17412,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15324,7 +17455,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15371,6 +17508,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -15409,7 +17551,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15446,7 +17594,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15493,6 +17647,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -15531,7 +17690,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15568,7 +17733,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15615,6 +17786,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -15653,7 +17829,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15690,7 +17872,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15737,6 +17925,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -15775,7 +17968,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15812,7 +18011,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15859,6 +18064,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -15897,7 +18107,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15934,7 +18150,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -15981,6 +18203,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -16019,7 +18246,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16056,7 +18289,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16103,6 +18342,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -16141,7 +18385,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16178,7 +18428,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16225,6 +18481,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -16263,7 +18524,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16300,7 +18567,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16347,6 +18620,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -16385,7 +18663,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16422,7 +18706,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16469,6 +18759,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -16507,7 +18802,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16544,7 +18845,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16591,6 +18898,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -16629,7 +18941,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16666,7 +18984,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16713,6 +19037,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -16751,7 +19080,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16788,7 +19123,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16835,6 +19176,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -16873,7 +19219,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16910,7 +19262,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -16957,6 +19315,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -16995,7 +19358,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17032,7 +19401,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17079,6 +19454,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -17117,7 +19497,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17154,7 +19540,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17201,6 +19593,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -17239,7 +19636,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17276,7 +19679,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17323,6 +19732,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -17361,7 +19775,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17398,7 +19818,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17445,6 +19871,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -17483,7 +19914,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17520,7 +19957,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17567,6 +20010,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -17605,7 +20053,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17642,7 +20096,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17689,6 +20149,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -17727,7 +20192,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17764,7 +20235,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17811,6 +20288,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -17849,7 +20331,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17886,7 +20374,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -17933,6 +20427,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -17971,7 +20470,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18008,7 +20513,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18055,6 +20566,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -18093,7 +20609,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18130,7 +20652,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18177,6 +20705,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -18215,7 +20748,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18252,7 +20791,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18299,6 +20844,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -18337,7 +20887,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18374,7 +20930,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18421,6 +20983,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -18459,7 +21026,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18496,7 +21069,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18543,6 +21122,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -18581,7 +21165,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18618,7 +21208,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18665,6 +21261,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -18703,7 +21304,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18740,7 +21347,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18787,6 +21400,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -18825,7 +21443,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18862,7 +21486,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18909,6 +21539,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -18947,7 +21582,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -18984,7 +21625,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19031,6 +21678,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -19069,7 +21721,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19106,7 +21764,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19153,6 +21817,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -19191,7 +21860,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19228,7 +21903,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19275,6 +21956,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -19313,7 +21999,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19350,7 +22042,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19397,6 +22095,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -19435,7 +22138,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19472,7 +22181,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19519,6 +22234,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -19557,7 +22277,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19594,7 +22320,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19641,6 +22373,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -19679,7 +22416,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19716,7 +22459,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19763,6 +22512,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -19801,7 +22555,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19838,7 +22598,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19885,6 +22651,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -19923,7 +22694,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -19960,7 +22737,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20007,6 +22790,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -20045,7 +22833,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20082,7 +22876,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20129,6 +22929,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -20167,7 +22972,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20204,7 +23015,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20251,6 +23068,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -20289,7 +23111,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20326,7 +23154,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20373,6 +23207,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -20411,7 +23250,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20448,7 +23293,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20495,6 +23346,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -20533,7 +23389,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20570,7 +23432,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20617,6 +23485,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -20655,7 +23528,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20692,7 +23571,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20739,6 +23624,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -20777,7 +23667,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20814,7 +23710,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20861,6 +23763,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -20899,7 +23806,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20936,7 +23849,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -20983,6 +23902,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -21021,7 +23945,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21058,7 +23988,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21105,6 +24041,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -21143,7 +24084,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21180,7 +24127,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21227,6 +24180,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -21265,7 +24223,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21302,7 +24266,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21349,6 +24319,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -21387,7 +24362,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21424,7 +24405,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21471,6 +24458,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -21509,7 +24501,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21546,7 +24544,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21593,6 +24597,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -21631,7 +24640,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21668,7 +24683,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21715,6 +24736,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -21753,7 +24779,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21790,7 +24822,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21837,6 +24875,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -21875,7 +24918,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21912,7 +24961,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -21959,6 +25014,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -21997,7 +25057,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22034,7 +25100,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22081,6 +25153,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -22119,7 +25196,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22156,7 +25239,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22203,6 +25292,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -22241,7 +25335,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22278,7 +25378,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22325,6 +25431,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -22363,7 +25474,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22400,7 +25517,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22447,6 +25570,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -22485,7 +25613,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22522,7 +25656,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22569,6 +25709,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -22607,7 +25752,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22644,7 +25795,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22691,6 +25848,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -22729,7 +25891,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22766,7 +25934,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22813,6 +25987,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -22851,7 +26030,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22888,7 +26073,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -22935,6 +26126,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -22973,7 +26169,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23010,7 +26212,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23057,6 +26265,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -23095,7 +26308,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23132,7 +26351,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23179,6 +26404,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -23217,7 +26447,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23254,7 +26490,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23301,6 +26543,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -23339,7 +26586,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23376,7 +26629,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23423,6 +26682,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -23461,7 +26725,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23498,7 +26768,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23545,6 +26821,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -23583,7 +26864,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23620,7 +26907,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23667,6 +26960,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -23705,7 +27003,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23742,7 +27046,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23789,6 +27099,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -23827,7 +27142,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23864,7 +27185,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23911,6 +27238,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -23949,7 +27281,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -23986,7 +27324,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24033,6 +27377,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -24071,7 +27420,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24108,7 +27463,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24155,6 +27516,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -24193,7 +27559,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24230,7 +27602,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24277,6 +27655,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -24315,7 +27698,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24352,7 +27741,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24399,6 +27794,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -24437,7 +27837,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24474,7 +27880,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24521,6 +27933,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -24559,7 +27976,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24596,7 +28019,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24643,6 +28072,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -24681,7 +28115,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24718,7 +28158,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24765,6 +28211,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -24803,7 +28254,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24840,7 +28297,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24887,6 +28350,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -24925,7 +28393,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -24962,7 +28436,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25009,6 +28489,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -25047,7 +28532,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25084,7 +28575,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25131,6 +28628,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -25169,7 +28671,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25206,7 +28714,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25253,6 +28767,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -25291,7 +28810,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25328,7 +28853,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25375,6 +28906,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -25413,7 +28949,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25450,7 +28992,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25497,6 +29045,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -25535,7 +29088,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25572,7 +29131,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25619,6 +29184,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -25657,7 +29227,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25694,7 +29270,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25741,6 +29323,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -25779,7 +29366,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25816,7 +29409,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25863,6 +29462,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -25901,7 +29505,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25938,7 +29548,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -25985,6 +29601,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -26023,7 +29644,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26060,7 +29687,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26107,6 +29740,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -26145,7 +29783,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26182,7 +29826,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26229,6 +29879,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -26267,7 +29922,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26304,7 +29965,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26351,6 +30018,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -26389,7 +30061,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26426,7 +30104,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26473,6 +30157,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -26511,7 +30200,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26548,7 +30243,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26595,6 +30296,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -26633,7 +30339,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26670,7 +30382,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26717,6 +30435,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -26755,7 +30478,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26792,7 +30521,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26839,6 +30574,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -26877,7 +30617,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26914,7 +30660,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -26961,6 +30713,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -26999,7 +30756,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27036,7 +30799,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27083,6 +30852,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -27121,7 +30895,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27158,7 +30938,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27205,6 +30991,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -27243,7 +31034,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27280,7 +31077,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27327,6 +31130,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -27365,7 +31173,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27402,7 +31216,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27449,6 +31269,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -27487,7 +31312,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27524,7 +31355,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27571,6 +31408,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -27609,7 +31451,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27646,7 +31494,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27693,6 +31547,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -27731,7 +31590,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27768,7 +31633,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27815,6 +31686,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -27853,7 +31729,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27890,7 +31772,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -27937,6 +31825,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -27975,7 +31868,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28012,7 +31911,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28059,6 +31964,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -28097,7 +32007,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28134,7 +32050,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28181,6 +32103,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -28219,7 +32146,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28256,7 +32189,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28303,6 +32242,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -28341,7 +32285,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28378,7 +32328,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28425,6 +32381,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -28463,7 +32424,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28500,7 +32467,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28547,6 +32520,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -28585,7 +32563,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28622,7 +32606,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28669,6 +32659,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -28707,7 +32702,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28744,7 +32745,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28791,6 +32798,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -28829,7 +32841,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28866,7 +32884,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28913,6 +32937,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -28951,7 +32980,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -28988,7 +33023,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29035,6 +33076,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -29073,7 +33119,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29110,7 +33162,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29157,6 +33215,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -29195,7 +33258,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29232,7 +33301,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29279,6 +33354,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -29317,7 +33397,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29354,7 +33440,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29401,6 +33493,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -29439,7 +33536,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29476,7 +33579,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29523,6 +33632,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -29561,7 +33675,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29598,7 +33718,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29645,6 +33771,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -29683,7 +33814,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29720,7 +33857,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29767,6 +33910,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -29805,7 +33953,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29842,7 +33996,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29889,6 +34049,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -29927,7 +34092,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -29964,7 +34135,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30011,6 +34188,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -30049,7 +34231,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30086,7 +34274,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30133,6 +34327,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -30171,7 +34370,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30208,7 +34413,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30255,6 +34466,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -30293,7 +34509,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30330,7 +34552,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30377,6 +34605,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -30415,7 +34648,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30452,7 +34691,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30499,6 +34744,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -30537,7 +34787,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30574,7 +34830,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30621,6 +34883,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -30659,7 +34926,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30696,7 +34969,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30743,6 +35022,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -30781,7 +35065,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30818,7 +35108,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30865,6 +35161,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -30903,7 +35204,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30940,7 +35247,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -30987,6 +35300,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -31025,7 +35343,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31062,7 +35386,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31109,6 +35439,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -31147,7 +35482,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31184,7 +35525,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31231,6 +35578,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -31269,7 +35621,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31306,7 +35664,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31353,6 +35717,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -31391,7 +35760,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31428,7 +35803,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31475,6 +35856,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -31513,7 +35899,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31550,7 +35942,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31597,6 +35995,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -31635,7 +36038,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31672,7 +36081,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31719,6 +36134,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -31757,7 +36177,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31794,7 +36220,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31841,6 +36273,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -31879,7 +36316,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31916,7 +36359,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -31963,6 +36412,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -32001,7 +36455,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32038,7 +36498,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32085,6 +36551,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -32123,7 +36594,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32160,7 +36637,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32207,6 +36690,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -32245,7 +36733,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32282,7 +36776,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32329,6 +36829,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -32367,7 +36872,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32404,7 +36915,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32451,6 +36968,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -32489,7 +37011,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32526,7 +37054,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32573,6 +37107,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -32611,7 +37150,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32648,7 +37193,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32695,6 +37246,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -32733,7 +37289,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32770,7 +37332,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32817,6 +37385,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -32855,7 +37428,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32892,7 +37471,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -32939,6 +37524,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -32977,7 +37567,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33014,7 +37610,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33061,6 +37663,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -33099,7 +37706,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33136,7 +37749,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33183,6 +37802,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -33221,7 +37845,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33258,7 +37888,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33305,6 +37941,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -33343,7 +37984,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33380,7 +38027,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33427,6 +38080,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -33465,7 +38123,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33502,7 +38166,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33549,6 +38219,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -33587,7 +38262,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33624,7 +38305,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33671,6 +38358,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -33709,7 +38401,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33746,7 +38444,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33793,6 +38497,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -33831,7 +38540,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33868,7 +38583,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33915,6 +38636,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -33953,7 +38679,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -33990,7 +38722,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34037,6 +38775,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -34075,7 +38818,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34112,7 +38861,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34159,6 +38914,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -34197,7 +38957,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34234,7 +39000,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34281,6 +39053,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -34319,7 +39096,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34356,7 +39139,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34403,6 +39192,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -34441,7 +39235,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34478,7 +39278,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34525,6 +39331,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -34563,7 +39374,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34600,7 +39417,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34647,6 +39470,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -34685,7 +39513,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34722,7 +39556,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34769,6 +39609,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -34807,7 +39652,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34844,7 +39695,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34891,6 +39748,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -34929,7 +39791,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -34966,7 +39834,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35013,6 +39887,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -35051,7 +39930,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35088,7 +39973,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35135,6 +40026,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -35173,7 +40069,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35210,7 +40112,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35257,6 +40165,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -35295,7 +40208,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35332,7 +40251,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35379,6 +40304,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -35417,7 +40347,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35454,7 +40390,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35501,6 +40443,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -35539,7 +40486,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35576,7 +40529,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35623,6 +40582,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -35661,7 +40625,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35698,7 +40668,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35745,6 +40721,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -35783,7 +40764,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35820,7 +40807,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35867,6 +40860,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -35905,7 +40903,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35942,7 +40946,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -35989,6 +40999,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -36027,7 +41042,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36064,7 +41085,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36111,6 +41138,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -36149,7 +41181,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36186,7 +41224,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36233,6 +41277,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -36271,7 +41320,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36308,7 +41363,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36355,6 +41416,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -36393,7 +41459,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36430,7 +41502,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36477,6 +41555,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -36515,7 +41598,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36552,7 +41641,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36599,6 +41694,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -36637,7 +41737,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36674,7 +41780,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36721,6 +41833,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -36759,7 +41876,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36796,7 +41919,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36843,6 +41972,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -36881,7 +42015,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36918,7 +42058,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -36965,6 +42111,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -37003,7 +42154,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37040,7 +42197,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37087,6 +42250,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -37125,7 +42293,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37162,7 +42336,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37209,6 +42389,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -37247,7 +42432,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37284,7 +42475,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37331,6 +42528,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -37369,7 +42571,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37406,7 +42614,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37453,6 +42667,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -37491,7 +42710,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37528,7 +42753,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37575,6 +42806,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -37613,7 +42849,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37650,7 +42892,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37697,6 +42945,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -37735,7 +42988,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37772,7 +43031,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37819,6 +43084,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -37857,7 +43127,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37894,7 +43170,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -37941,6 +43223,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -37979,7 +43266,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38016,7 +43309,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38063,6 +43362,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -38101,7 +43405,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38138,7 +43448,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38185,6 +43501,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -38223,7 +43544,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38260,7 +43587,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38307,6 +43640,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -38345,7 +43683,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38382,7 +43726,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38429,6 +43779,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -38467,7 +43822,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38504,7 +43865,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38551,6 +43918,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -38589,7 +43961,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38626,7 +44004,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38673,6 +44057,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -38711,7 +44100,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38748,7 +44143,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38795,6 +44196,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -38833,7 +44239,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38870,7 +44282,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38917,6 +44335,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -38955,7 +44378,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -38992,7 +44421,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39039,6 +44474,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -39077,7 +44517,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39114,7 +44560,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39161,6 +44613,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -39199,7 +44656,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39236,7 +44699,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39283,6 +44752,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -39321,7 +44795,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39358,7 +44838,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39405,6 +44891,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -39443,7 +44934,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39480,7 +44977,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39527,6 +45030,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -39565,7 +45073,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39602,7 +45116,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39649,6 +45169,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -39687,7 +45212,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39724,7 +45255,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39771,6 +45308,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -39809,7 +45351,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39846,7 +45394,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39893,6 +45447,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -39931,7 +45490,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -39968,7 +45533,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40015,6 +45586,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -40053,7 +45629,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40090,7 +45672,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40137,6 +45725,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -40175,7 +45768,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40212,7 +45811,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40259,6 +45864,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -40297,7 +45907,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40334,7 +45950,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40381,6 +46003,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -40419,7 +46046,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40456,7 +46089,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40503,6 +46142,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -40541,7 +46185,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40578,7 +46228,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40625,6 +46281,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -40663,7 +46324,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40700,7 +46367,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40747,6 +46420,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -40785,7 +46463,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40822,7 +46506,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40869,6 +46559,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -40907,7 +46602,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40944,7 +46645,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -40991,6 +46698,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -41029,7 +46741,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41066,7 +46784,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41113,6 +46837,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -41151,7 +46880,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41188,7 +46923,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41235,6 +46976,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -41273,7 +47019,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41310,7 +47062,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41357,6 +47115,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -41395,7 +47158,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41432,7 +47201,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41479,6 +47254,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -41517,7 +47297,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41554,7 +47340,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41601,6 +47393,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -41639,7 +47436,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41676,7 +47479,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41723,6 +47532,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -41761,7 +47575,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41798,7 +47618,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41845,6 +47671,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -41883,7 +47714,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41920,7 +47757,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -41967,6 +47810,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -42005,7 +47853,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42042,7 +47896,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42089,6 +47949,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -42127,7 +47992,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42164,7 +48035,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42211,6 +48088,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -42249,7 +48131,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42286,7 +48174,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42333,6 +48227,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -42371,7 +48270,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42408,7 +48313,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42455,6 +48366,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -42493,7 +48409,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42530,7 +48452,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42577,6 +48505,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -42615,7 +48548,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42652,7 +48591,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42699,6 +48644,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -42737,7 +48687,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42774,7 +48730,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42821,6 +48783,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -42859,7 +48826,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42896,7 +48869,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -42943,6 +48922,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -42981,7 +48965,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43018,7 +49008,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43065,6 +49061,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -43103,7 +49104,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43140,7 +49147,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43187,6 +49200,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -43225,7 +49243,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43262,7 +49286,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43309,6 +49339,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -43347,7 +49382,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43384,7 +49425,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43431,6 +49478,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -43469,7 +49521,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43506,7 +49564,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43553,6 +49617,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -43591,7 +49660,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43628,7 +49703,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43675,6 +49756,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -43713,7 +49799,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43750,7 +49842,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43797,6 +49895,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -43835,7 +49938,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43872,7 +49981,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43919,6 +50034,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -43957,7 +50077,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -43994,7 +50120,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44041,6 +50173,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -44079,7 +50216,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44116,7 +50259,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44163,6 +50312,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -44201,7 +50355,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44238,7 +50398,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44285,6 +50451,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -44323,7 +50494,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44360,7 +50537,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44407,6 +50590,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -44445,7 +50633,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44482,7 +50676,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44529,6 +50729,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -44567,7 +50772,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44604,7 +50815,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44651,6 +50868,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -44689,7 +50911,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44726,7 +50954,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44773,6 +51007,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -44811,7 +51050,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44848,7 +51093,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44895,6 +51146,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -44933,7 +51189,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -44970,7 +51232,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45017,6 +51285,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -45055,7 +51328,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45092,7 +51371,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45139,6 +51424,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -45177,7 +51467,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45214,7 +51510,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45261,6 +51563,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -45299,7 +51606,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45336,7 +51649,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45383,6 +51702,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -45421,7 +51745,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45458,7 +51788,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45505,6 +51841,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -45543,7 +51884,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45580,7 +51927,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45627,6 +51980,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -45665,7 +52023,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45702,7 +52066,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45749,6 +52119,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -45787,7 +52162,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45824,7 +52205,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45871,6 +52258,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -45909,7 +52301,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45946,7 +52344,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -45993,6 +52397,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -46031,7 +52440,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46068,7 +52483,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46115,6 +52536,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -46153,7 +52579,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46190,7 +52622,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46237,6 +52675,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -46275,7 +52718,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46312,7 +52761,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46359,6 +52814,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -46397,7 +52857,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46434,7 +52900,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46481,6 +52953,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -46519,7 +52996,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46556,7 +53039,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46603,6 +53092,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -46641,7 +53135,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46678,7 +53178,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46725,6 +53231,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } }, @@ -46763,7 +53274,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "RED" + "fluorescent tag setting": "RED", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46800,7 +53317,13 @@ "value": 100.0, "unit": "%" }, - "fluorescent tag setting": "GREEN" + "fluorescent tag setting": "GREEN", + "custom information document": { + "start plate repeat each [s]": 0.0, + "number of plate repeats": 1.0, + "filter set": "PRIMARY ", + "additional focus offset [mm]": 0.0 + } } ] }, @@ -46847,6 +53370,11 @@ } } ] + }, + "custom information document": { + "protocol owner": "foobar", + "measurement finished": "2020-03-06T12:27:27.2398112-05:00", + "protocol name": "baz" } } } @@ -46863,7 +53391,7 @@ "software name": "Kaleido", "software version": "2.0.3058.126", "ASM converter name": "allotropy_revvity_kaleido", - "ASM converter version": "0.1.61" + "ASM converter version": "0.1.105" } } }